I have one scripted page calling another like so,...
1st. scripted page link:
<A HREF="javascript:void(0)"onclick="window.open('$pathtootherpage?$variablebeingsent')></a>
2nd. scripted page:
the recieving scripted page does this,...
$temp = $SERVER['QUERY_STRING'];
$SERVER['QUERY_STRING'] = "";
Using the last line to clear out the server query.
The problem is, clicking again on the first link, resends the same info to the server query, even though the "$variablebeingsent" has changed. Actually, the data being sent IS the new data but the recieving script only sees the old data it first recieved from the server query.
Is there anything else I can do to clear out global variables or am I chasing the wrong problem?
Thanks, DC