l_l
17 years ago
Guh...how does is.gd do this? is.gd/api.php?longurl=ht...
latest #7
Chris
17 years ago
Maybe its server is modified in some way to handle it or their software attaches all the pieces together.
l_l
17 years ago
I don't think it's software...How would you even pull that off? You would need to check for every variable name possible...
Chris
17 years ago
No you wouldn't. They're all easily accessible in the $_GET array.
立即下載
Chris
17 years ago
foreach($_GET as $key => $value)
l_l
17 years ago
$_GET is an array? Why didn't anyone tell me?
l_l
17 years ago
But wait, how would I get each key to access the value? or is $key some sort of PHP constant there?
Chris
17 years ago
In foreach($_GET as $foo => $bar), $foo is assigned the key, and $bar is assigned that key's value.
back to top