Set the PHP info wanted.

This commit is contained in:
Jeff Teunissen 2007-03-19 07:52:00 +00:00
parent e261fc6fdd
commit 12f95c88b5
1 changed files with 7 additions and 1 deletions

View File

@ -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);
?>