It's free and you have access to premium codes!
Welcome back! Please login to your account.
Don't worry, we'll send you a message to help you to recover your acount.
Please check your email for instructions to activate your account.
Written by 20 November 2012
There exist important data on PHP predefined constants such as $_SERVER (read more about these constants at http://phpfreetutorial.com). This script user $_SERVER to get access to the server and users data such as server name, document root, ports and etc. This script is ran on a local server and the results are shown in the following image. Enjoy!
<!-- this script is provided by https://www.phpfreecode.com coded by: Kerixa Inc. -->
<!-- This Script is from www.phpfreecpde.com, Coded by: Kerixa Inc-->
<?php
$dd=array(
'Server Address'=>$_SERVER['SERVER_ADDR'],
'Server Name'=>$_SERVER['SERVER_NAME'],
'Server Software'=>$_SERVER['SERVER_SOFTWARE'],
'Document Root'=>$_SERVER['DOCUMENT_ROOT'],
'HTTP Host'=>$_SERVER['HTTP_HOST'],
'Remote Address'=>$_SERVER['REMOTE_ADDR'],
'Remote Port'=>$_SERVER['REMOTE_PORT'],
'Script File Name'=>$_SERVER['SCRIPT_FILENAME'],
'Server Admin'=>$_SERVER['SERVER_ADMIN'],
'Serever Port'=>$_SERVER['SERVER_PORT'],
'Script Name'=>$_SERVER['SCRIPT_NAME'],
'Request URI'=>$_SERVER['REQUEST_URI'],
'PHP Self'=>$_SERVER['PHP_SELF']
);
?>
<table style="border: 1px solid #000000;width: 600px" align="center">
<tr>
<td style="font-family: 'Times New Roman', Times, serif;font-size: 17pt;text-align: center;width: 298px; color: #2214B9;border-style: solid;border-width: 1px;">
<strong>Name</strong></td>
<td style="font-family: 'Times New Roman', Times, serif;font-size: 17pt;text-align: center;color: #2214B9;border-style: solid;border-width: 1px; width: 298px;">
<strong>Value</strong></td>
</tr>
<?php
foreach ($dd as $key=>$value){
?>
<tr>
<td style="font-family: 'Times New Roman', Times, serif;font-size: 15pt;text-align: left; width: 298px; color: #2214B9;border-style: solid;border-width: 1px;">
<?php echo $key?> </td>
<td style="font-family: 'Times New Roman', Times, serif;font-size: 15pt;text-align: left; color: #2214B9;border-style: solid;border-width: 1px; width: 298px;">
<?php echo $value?></td>
</tr>
<?php } ?>
</table>
<div style="text-align: center">
<br><font face="Tahoma"><a target="_blank" href="http://www.phpfreecode.com/"><span style="font-size: 8pt; text-decoration: none">PHP Free Code</div>
</span></a></font><a target='_blank' href='https://www.phpfreecode.com' style='font-size: 8pt; text-decoration: none'>Php Best Codes</a>
Comments
Here you can leave us commments. Let us know what you think about this code tutorial!