home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2004 New Year / INTERNET112.ISO / pc / software / windows / building / easy_php / easyphp16_setup.exe / {app} / phpmyadmin / phpinfo.php < prev    next >
Encoding:
PHP Script  |  2003-09-24  |  363 b   |  20 lines

  1. <?php
  2. /* $Id: phpinfo.php,v 1.6 2001/11/09 07:54:04 loic1 Exp $ */
  3.  
  4.  
  5. /**
  6.  * Gets core libraries and defines some variables
  7.  */
  8. require('./libraries/grab_globals.lib.php');
  9. require('./libraries/common.lib.php');
  10.  
  11.  
  12. /**
  13.  * Displays PHP information
  14.  */
  15. $is_superuser = @mysql_query('USE mysql', $userlink);
  16. if ($is_superuser || $cfgShowPhpInfo) {
  17.     phpinfo();
  18. }
  19. ?>
  20.