<?php
/**
* Generate phpinfo() style PEAR information, with a custom blue skin
*
* @author Laurent Laville
* @package PEAR_Info
* @version $Id:$
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @ignore
*/
// require the PEAR_Info file
require_once 'PEAR/Info.php';
// set your own styles, rather than use the default stylesheet
PEAR_Info::setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'blueskin.css');
// Create PEAR_Info object
$info = new PEAR_Info();
// Display PEAR_Info output
$info->display();
?>