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
?>