<?php
/*
phpCookBook Header File
http://phpcookbook.sourceforge.net
Copyright (c)2002 Floris Barthel <hide@address.com>
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
included LICENCE file for more details.
*/
// Include the classes
require_once('includes/inc.funcs.php');
require_once('includes/inc.constants.php');
require_once('includes/class.ini.php');
require_once('includes/class.xml.php');
// Create an object from the ini file
$ini = new ini(_INIFILE);
// Load the ini settings
$iniSettings = $ini->iniReadAll();
// Create the xml parser object
$parser = new XMLParse();
?>