superjer
superjer

2005 Mar 20 • 3762
|
I'm not sure what you mean?
$_GET contains an element for every key in the URL's query string.
So a URL like:
hxxp://example.com/page?a=1&b=1&c=lol
populates $_GET with
$_GET['a'] = 1;
$_GET['b'] = 2;
$_GET['c'] = "lol";
It's entirely injection, I guess. You shouldn't trust what's in it, obviously, since anyone can put anything in a URL.
|
|
|
|
|
(Edited 2012 Feb 3 at 19:29)
2012 Feb 3 at 19:28
|
|