This is a weird GET url because the normal format is:
domain.com/page.html?a=1&b=2
PHPinfo will help a lot:
<?php phpinfo(); ?>
Relevance Result:
<?php
phpinfo();
echo $_GET['a'];
echo $_GET['b'];
echo $_SERVER['QUERY_STRING'];
echo $_SERVER['REQUEST_URI'];
?>
source
share