Add the flight search and booking features.
[Project_webapp.git] / includes / config-example.php
1 <?php
2
3 return array(
4 'root_url' => 'http://localhost/~fraggle/airpolytech',
5 'host' => 'localhost',
6 'username' => 'username',
7 'password' => 'password',
8 'database' => 'bdVols',
9 'actions' => array(
10 'home',
11 'login',
12 'logout',
13 'register',
14 'reservations',
15 'booking',
16 'search',
17 'account'
18 )
19 );
20
21 /* return array(
22 'host' => $_SERVER['dbHost'],
23 'username' => $_SERVER['dbLogin'],
24 'password' => $_SERVER['dbPass'],
25 'database' => '$_SERVER['dbBd']'
26 ); */
27
28 ?>