Code: Select all
http://web.site.com/index.php?test=hello
<?php
echo $test;
?>I get no output. None. Nada. Zip. Nothing. Does anybody have any idea why??? This does work:
Code: Select all
<?php
$test = "Hello";
echo $test;
?>Moderator: General Moderators
Code: Select all
http://web.site.com/index.php?test=hello
<?php
echo $test;
?>Code: Select all
<?php
$test = "Hello";
echo $test;
?>