Rev | Author | Line No. | Line |
---|---|---|---|
250 | kaklik | 1 | <?php |
2 | /* $Id: phpinfo.php,v 2.5 2005/11/22 11:58:37 cybot_tm Exp $ */ |
||
3 | // vim: expandtab sw=4 ts=4 sts=4: |
||
4 | |||
5 | |||
6 | /** |
||
7 | * Gets core libraries and defines some variables |
||
8 | */ |
||
9 | define( 'PMA_MINIMUM_COMMON', true ); |
||
10 | require_once('./libraries/common.lib.php'); |
||
11 | |||
12 | |||
13 | /** |
||
14 | * Displays PHP information |
||
15 | */ |
||
16 | if ( $GLOBALS['cfg']['ShowPhpInfo'] ) { |
||
17 | phpinfo(); |
||
18 | } |
||
19 | ?> |