I'm using xampp on XP.
I can't get PHP to read my var from the URL. example, when I hit www.foobar.com/whatever.php?azz=wala then I should get wala to print to the browser with the following code. Any ideas??
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
before
<?php
echo "middle ".$azz." zoo";
echo "aftermiddle";
?>
after
</body>
</html>