Markus J�Ntti wrote:
<?
if($_GET[test] == "test") { echo "A"; }
else { echo "B"; }
?>
You forgot the double quotes ... Should be:
if($_GET["test"] ... Jc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

