RE: [PHP] Serialize/URLencode query...

2002-05-11 Thread Glenn Sieb
At 12:11 AM 5/12/2002 -0700, John Holmes posted the following... >You should use sessions. All you have to do is call session_start() at >the beginning of your code. Then, any variable you want to save to the >session, you simply use: That did the trick! Thanks for the explanation, John! Now I ha

RE: [PHP] Serialize/URLencode query...

2002-05-11 Thread John Holmes
You should use sessions. All you have to do is call session_start() at the beginning of your code. Then, any variable you want to save to the session, you simply use: $_SESSION["name"] = $name; Then, on the next page, call session_start() again, and you'll have the value of $name from the previo