final move of files
[web.mtrack] / index.php
1 <?php
2
3 // this will be generate eventually by the 'setup.php' script..
4
5
6 ini_set('include_path', 
7     dirname(__FILE__) . PATH_SEPARATOR .
8     dirname(__FILE__) . '/pear');
9
10 require_once 'HTML/FlexyFramework.php';
11  
12
13 define('DB_DATAOBJECT_NO_OVERLOAD',true);
14
15 ini_set('display_errors', true);
16
17 new HTML_FlexyFramework(array(
18         
19         'project' => 'MTrackWeb',
20          
21         'database'        => 'mysql://root:@localhost/mtrack',
22     
23
24 ));
25  
26     
27               
28
29
30