Files
phpmyadmin/phpinfo.php
Sebastian Mendel c4e1207e2c - respect only $GLOBALS['cfg']['ShowPhpInfo']
- minimum include
2005-11-22 11:58:37 +00:00

20 lines
292 B
PHP

<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* Gets core libraries and defines some variables
*/
define( 'PMA_MINIMUM_COMMON', true );
require_once('./libraries/common.lib.php');
/**
* Displays PHP information
*/
if ( $GLOBALS['cfg']['ShowPhpInfo'] ) {
phpinfo();
}
?>