diff --git a/phpinfo.php b/phpinfo.php index 7196289..1542e5e 100644 --- a/phpinfo.php +++ b/phpinfo.php @@ -3,5 +3,11 @@ $need = 'auth'; require "parts/preamble.php"; // Load up most of the document - phpinfo (); + $infoWanted = INFO_GENERAL + | INFO_CONFIGURATION + | INFO_MODULES + | INFO_ENVIRONMENT + | INFO_VARIABLES; + + phpinfo ($infoWanted); ?> \ No newline at end of file