Using PHP Requirements Your account detail e-mail/letter Introduction A good introduction to using PHP can be found here Documentation Full documentation is available here
Because every system is setup differently, phpinfo() is commonly used to check configuration settings and for available predefined variables on a given system.
Just create a text file with the following contents:
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
Save it as a .php file - eg phpinfo.php and upload it to your account. The view it with your web browser at http://www.domainname.com/phpinfo.php
|