What is the simplest way to tell if my php4 in installed properly on the server....??
Thanks for your help...
#########test.php######### <? echo "Hello World"; ?> ##########################
Create a file with the following:
<?php phpinfo(); ?>
It should let you know all sorts of things about PHP... If PHP is working.
Dave