Skip to content

Instantly share code, notes, and snippets.

@ryanemitchell
Last active December 28, 2015 19:49
Show Gist options
  • Save ryanemitchell/7553459 to your computer and use it in GitHub Desktop.
Save ryanemitchell/7553459 to your computer and use it in GitHub Desktop.
List Server Variables
//
<?php
print"<table border=0>";
foreach ($_SERVER as $key=>$val )
{
echo "<tr><td>".$key."</td><td>" .$val."</tr>";
}
print"</table>";
phpinfo();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment