Reputation: 14774
a URL ending with something like portal.php?key2=hello
how can I get the value of "key2"?
Upvotes: 8
Views: 22137
Reputation: 15969
GET data is decoded into the $_GET super-global array. See http://php.net/manual/en/language.variables.external.php
Upvotes: 2
Reputation: 11460
$_GET['key2']
will get you the value from a query string.
$_POST['key2']
will get you the value from a form posted.
$_REQUEST['key2']
will get you either of the above if it exists.
Upvotes: 17