Hi there,
I need to overwrite a sess_var with a parameter from the url. How can I access the parameter passed in the url.
Is there an equivalent to $_POST?
Thanks in advance
There's $_SESSION[] for sessions if that's what you're asking.
if your url looks like this: www.whatever.com?id=4&test="text"
then you should automatically have two variables availible to the recieving script. $id (which is set to 4) and $test...