Just installed both on Mac OS X 10.1.4. The DB seems to be working fine. My problem is with PHP.
After install, I did the usual test with
Code: Select all
<?php phpinfo(); ?>Then tested with
Code: Select all
<?php echo $HTTP_USER_AGENT; ?>and it produces nothing.
Also tried the following:
Code: Select all
<?php
if(strstr($HTTP_USER_AGENT, "MSIE"))
echo "You are using Internet Explorer<br>";
else
echo "You are NOT using Internet Explorer<br>" ?>Also tried a brief example from a form and it did not echo the form contents.
Why is it not echoing variables?