What is the "less code need" way to get parameters from URL query string which is formatted like this:

www.mysite.com/category/subcategory?myqueryhash

Output should be: myqueryhash

I aware of this approach:

www.mysite.com/category/subcategory?q=myquery

<?php
   echo $_GET['q'];  //output: myquery
?>
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

$_SERVER['QUERY_STRING'] contains the data that you are looking for.


PHP: $_SERVER - Manual

link|improve this answer
print_r($_SERVER) to find related values – Dagon Dec 12 '11 at 3:58
feedback

If you want the whole query string:

$_SERVER["QUERY_STRING"]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.