Does anybody know why a server would be not collecting $_GET`s or $_POSTS etc?
eg:
I know an answer would be to register globals on but its not a good answer :/
eg:
PHP Code:
echo "<a href=\"index.php?hello=hello&world=world\">Same Page</a><br/>";
$text = "Debug: ".$_GET['hello']."=".$_GET['world'];
echo $text;
//out come is: Debug: =
Comment