Created
May 1, 2018 01:30
-
-
Save ephsmith/3c7abb93b8c0b6d15bc0055c0e70cf67 to your computer and use it in GitHub Desktop.
Print All PHP Server Variables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- Contrbuted by GS --> | |
<html><head></head><body> | |
<?php | |
while (list($var,$value) = each ($_SERVER)) { | |
echo "$var => $value <br />"; | |
} | |
?> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment