<?php
 
 
require_once "class.pConfig.php";
 
 
// Checks if Module pConfig is loaded
 
if (defined("MOD_PCONFIG"))
 
    echo "<h1>pConfig Module Loaded</h1>\n";
 
 
// Open Configuration File and Generate Tree Structure
 
$config = new pConfig("config_generated.ini.php");
 
 
// Testing output
 
echo "<pre>";
 
print_r($config);
 
echo "</pre>";
 
 
?>
 
 
 
 |