ANIL KUMAR PANIGRAHI 's Blog

How to get complete information about server using php code

Posted by: Anil Kumar Panigrahi in: ● March 22, 2010

Hi, In php there is one predefined variable called $_SERVER, with that only we can get the complete information about server.

Once check the below script:

<?php
echo “<table border = ‘2′ style=’color:#ffffff’>”;
$i = 0;
foreach($_SERVER as $key=>$value){
if($i%2 == 0) {
echo “<tr bgcolor=’#993300′>”;
} else {
echo “<tr bgcolor=’#0099FF’>”;
}
echo “<td>”;
echo $key;
echo “</td>”;
echo “<td>”;
echo $value;
echo “</td>”;
echo “</tr>”;
$i++;
}
echo “</table>”;
?>

How to get complete information about server using php code

How to get complete information about server using php code

Share on Twitter

No Comments to "How to get complete information about server using php code"

Write Comment

About Me

  Anil Kumar Panigrahi
  Software Engineer (PHP)
  Blogger & Founder of Anil Labs
  Baruva, India

You can share with me . . .

My Own Contributions

1) First contribution for codeigniter framework ( multi language support using google translate API ). we can get files from http://github.com/nyros/codeigniter_multilanguage


2) Audio and Video Streaming using FFMpeg and PHP -complete doc file : http://www.docstoc.com/docs/8300349/Audio-and-Video-Streaming

Twitter Updates

Follow me @anil2u
  • We will always be thankful to our teacher for all the hard work and efforts they have put in, for educating us.- Happy teachers Day . . . :) - posted on 05/09/2010 05:39:13
  • Working on shipping cost functionality (UPS and USPS) for oscommerce shopping cart - posted on 01/09/2010 09:40:03
  • If your freedom hurts others, you are not free. You must not hurt others. - Vivekananda - posted on 31/08/2010 06:02:49
  • Another day starts with full of energy . Good Morning - posted on 31/08/2010 02:54:12
  • Nice explanation about php oops concept : http://youropensource.com/projects/182-OOPS-Concepts-in-PHP - posted on 30/08/2010 19:56:17