If you want more details about the server and its environment, you can create a info.php file with the following code:
PHP Code:
<html>
<head>
<title>PHP Info for <?=$_SERVER['HTTP_HOST']?></title>
</head>
<body>
<h1>PHP Info for <?=$_SERVER['HTTP_HOST']?></h1>
<?php
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
echo 'Your hostname = '.$hostname."<p>\n";
echo 'Current Server IP Address: '.$_SERVER['SERVER_ADDR']."<p>\n";
echo 'Current Server Date/Time: '.date ("l dS of F Y h:i:s A T")."<p>\n";
echo 'Current Greenwich Mean Time: '.gmdate ("l dS of F Y h:i:s A T")."<p>\n";
phpinfo(); ?>
</body>
</html>
Hope it helps.
