Emulating CodeIgniter
You can make CoolBrew behave like CodeIgniter if you need to by simply creating an "index.php" file with the following code in it:
<?php
require_once 'coolbrew.inc.php';
get("module_name");
?>
This file, when loaded into your browser, will behave the same as the default index.php file that comes with CodeIgniter. Setting "module_name" in the get() function is the same as setting CodeIgniter's $application_folder variable.
For information about mixing application tags and regular tags on the same page, see the Tags section in this guide.