I've installed PHP on my Linux box, but am wondering if I missed something in the setup of it. When I attempt to pass variables in the URL or by POST, the variables never get passed. For example, even hard typing straight into the url
somepage.php?what=4&why=8
and then attempting to simply echo them out
echo "What ".$what."<br>";
echo "Why ".$why."<br>";
isn't working. Any ideas. Thanks.
-Kevin