To start things off, here is a simple test script that will check and display some of the host's PHP specifications. Type this in, save it as info.php and upload it to your server area.
Afterwards, open your browser and type in the address to view that page. Something like... http://www.yourdomain.com/info.php
phpinfo is one of the "built-in" functions that PHP does. There are many others, but this one is a nice one to use to start of as a test.
All working well so far? Good. Continue forth...
<html>
<head>
<title> PHP Test Script </title>
</head>
<body>
<?php
phpinfo( );
?>
</body>
</html>
<head>
<title> PHP Test Script </title>
</head>
<body>
<?php
phpinfo( );
?>
</body>
</html>
Afterwards, open your browser and type in the address to view that page. Something like... http://www.yourdomain.com/info.php
phpinfo is one of the "built-in" functions that PHP does. There are many others, but this one is a nice one to use to start of as a test.
All working well so far? Good. Continue forth...


