|
Write it in the form url, don't you understand?
Write to the form <input type = "hidden" name = "name" value = "123">
Write to the url xxx.php? Name = 123
Write to session
session_start ();
session_register ("name");
name = 123;
Write to cookie
setcookie ("name", "123", time () + 3600, "/", "localhost"); |
|