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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2003-09-24
|
363 b
|
20 lines
<?php
/* $Id: phpinfo.php,v 1.6 2001/11/09 07:54:04 loic1 Exp $ */
/**
* Gets core libraries and defines some variables
*/
require('./libraries/grab_globals.lib.php');
require('./libraries/common.lib.php');
/**
* Displays PHP information
*/
$is_superuser = @mysql_query('USE mysql', $userlink);
if ($is_superuser || $cfgShowPhpInfo) {
phpinfo();
}
?>