PHP Querystring Problem
I have a querystring being passed from Flash to a PHP file.
page.php?var1=foo&var1=foo&var2=john
I've tried endless ways of getting the array of var1 into a loop with no luck. I can pull one var1 but not the others being passed via querystring.
Ultimately, I'd change the SWF file to load the var into a proper array format but cannot change it as I don't have access to the original FLA.
So, is there a way in PHP to load var1 and it's many variables into a loop for print or echo?
I realize it's probably something simple but I've been up for TOO long.
|