Skip to content

Instantly share code, notes, and snippets.

@ryanemitchell
Last active March 20, 2017 18:53
Show Gist options
  • Save ryanemitchell/20a64c0d7967bb145610 to your computer and use it in GitHub Desktop.
Save ryanemitchell/20a64c0d7967bb145610 to your computer and use it in GitHub Desktop.
List Server Vars
<?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