A PHP Info script will give you information about the PHP installation and configuration of the server and can be very useful in troubleshooting issues with your PHP scripts.
Simply create a file with the following PHP commands and save it as phpinfo.php
CODE
<?
phpinfo();
?>
Then upload the phpinfo.php file to your /htdocs directory.
You can then access the file by visiting:
http://domain-name.com/phpinfo.php where domain-name.com is the name of the domain assigned to your hosting package.