Problems to get PHP-parameters to work
Posted: Wed Jan 01, 2003 12:44 pm
Just installed PHP 4.2.2 in a standard RedHat8.0 installation with Apache 2.0.40 and have problems with parameter tranfer to PHP. Is there a "trick" to get it working? I assumed this was really standard (and simple).
My test case with test.php
results in
Hello world
when requesting
http://myweb/test.php?hi=Donald
I can not see my Donald!
My test case with test.php
Code: Select all
<?php
print ("Hello world $hi");
?>Hello world
when requesting
http://myweb/test.php?hi=Donald
I can not see my Donald!