I've got a situation where passed $HTTP_GET_VARS are not accessible as local vars (ie. $var) on the receiving page.
I find this curious as I thought that they were available in this manner as a default.
I'm also interested in a quick fix, and was wondering if a bit of code along the following lines might do the trick:
foreach ($HTTP_GET_VARS as $key=>$value) {
$key = $value;
}
I know that for this to work I would need to modify the above code to actually set the local var... and that as it is now, it will try and set the value of $key instead of $($key).
Any ideas?
thanks!