
April 21st, 2000, 10:09 AM
|
|
Apprentice Deity
|
|
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237

Time spent in forums: 4 m 8 sec
Reputation Power: 17
|
|
|
You have to specifically pass any variables you want to keep. That doesn't happen automagically even if POSTing to the same page.
You can do this with a form like this:
while (list($key,$value)=each($HTTP_GET_VARS))
{
print "<input type=hidden name='$key' value='$value'>";
}
If you don't want to pass ALL the GET variables you'll have to specifically declare each one in a hidden input field.
|