I currently have the following loop which loops through all the GET variables that have been sent:
foreach($HTTP_GET_VARS as $keyname => $keyvalue){
$keyname = $keyvalue;
}
The idea is to create a load of variables rather than using the $HTTP_GET_VARS array.
The problem i'm having is creating a variable called whatever $keyname is equal to. In the loop above, each loop just assigns $keyvalue to a variable called $keyname.
I have a feeling the solution is something really simple too... :rolleyes: