mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
13 lines
No EOL
272 B
PHP
13 lines
No EOL
272 B
PHP
<? // Preamble
|
|
$pageName = "PHP Information";
|
|
$need = 'auth';
|
|
require "parts/preamble.php"; // Load up most of the document
|
|
|
|
$infoWanted = INFO_GENERAL
|
|
| INFO_CONFIGURATION
|
|
| INFO_MODULES
|
|
| INFO_ENVIRONMENT
|
|
| INFO_VARIABLES;
|
|
|
|
phpinfo ($infoWanted);
|
|
?>
|