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