~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/phpmyadmin2.10.1/phpinfo.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/* $Id: phpinfo.php 7853 2005-11-22 11:58:37Z cybot_tm $ */
 
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
?>