if I want to pass a variable to a new page (index.html) using a link, I just do:
<a href="index.html?myvar=new_value">...
so I get $myvar in index.html with the value "new_value". OK.
But now, if $myvar is a registered session variable ( session_register("myvar") ),
it seems that I cannot change the value of $myvar as I did before:
<a href="index.html?myvar=new_value">...
doesn't change the value of $myvar (in index.html I get $myvar with the value "old_value").
It is the same with forms!
What is the solution?