I have a url,
example.com/?/page1
and i want to find out what the GET part of the url is, for example:
?/page1
how do i do this? like, without having to split strings and stuff?
|
|
|
|
|
|
|
The following variable will contain the entirety of the query string (that is, the portion of the url following the ? character):
If you're curious about the rest of the contents of the $_SERVER array, they're listed in the PHP manual here. |
||
|
|
|
|
||
|
|
|
|
Sounds to me like you want to look up parse_url() and parse_str(). Of course, these will 'split' the string(s) behind the scenes. You can then use http_build_query to rebuild the query, if required.
Output is:
|
|||
|
|
|
|
That is a strange GET URL because the normal format is:
PHPinfo will help a whole lot:
Output of relevance:
|
||
|
|
|
|
$_GET is an associative array of key values that are passed from the user's request. You can see its contents by doing: print_r($_GET); http://us3.php.net/manual/en/reserved.variables.get.php EDIT: For convenience you may want to pass key=value pairs separated by ampersands. E.g., example.com/?page=1 |
||
|