home *** CD-ROM | disk | FTP | other *** search
- <?php
- /* $Id: phpinfo.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
- // vim: expandtab sw=4 ts=4 sts=4:
-
-
- /**
- * Gets core libraries and defines some variables
- */
- require_once('./libraries/grab_globals.lib.php');
- require_once('./libraries/common.lib.php');
-
-
- /**
- * Displays PHP information
- */
- $is_superuser = @PMA_mysql_query('USE mysql', $userlink);
- if ($is_superuser || $cfg['ShowPhpInfo']) {
- phpinfo();
- }
- ?>
-