/includes/ -> config_inc.exp
1 <?php
2
3 // config_inc_exp.php - Contains basic database interface settings
4 // config_inc_exp.php - author: Nico Stuurman <nicost@sourceforge.net>
5
6 // EDIT THIS FILE AND SAVE IT AS 'config_inc.php'
7
8 /******************************************************************
9 * This file is part of PhpLabware. PhpLabware is released under *
10 * the Gnu Public License. *
11 * *
12 * Copyright 2001 by Nico Stuurman *
13 ******************************************************************/
14
15
16 // Database type. Everything support by adodb is allowed here
17 // examples: "mysql" "oracle" "postgres7"
18 $db_type = "postgres7";
19
20 // Host on which the database server runs
21 //$db_host = "localhost";
22 $db_host = "";
23
24 // name of the database we are going to use. You'll have to create it.
25 $db_name = "phplabware";
26
27 // A valid database user with all rights to do anything to the database
28 $db_user = "postgres";
29
30 // Password of that database user
31 $db_pwd = "";
32
33 // if true, the setup script checks that the browser runs on the local host
34 // this makes setup.php more secure, but will not work when the database server
35 // runs on a remote host. Use 'true' or 'false'.
36 $setup_local=true;
37
38 ?>