home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / phpinfo.php < prev    next >
PHP Script  |  2008-06-23  |  360b  |  22 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  *
  5.  * @version $Id: phpinfo.php 10240 2007-04-01 11:02:46Z cybot_tm $
  6.  */
  7.  
  8. /**
  9.  * Gets core libraries and defines some variables
  10.  */
  11. define('PMA_MINIMUM_COMMON', true);
  12. require_once './libraries/common.inc.php';
  13.  
  14.  
  15. /**
  16.  * Displays PHP information
  17.  */
  18. if ($GLOBALS['cfg']['ShowPhpInfo']) {
  19.     phpinfo();
  20. }
  21. ?>
  22.