1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<? /* ©2004 Proverbs, LLC. All rights reserved. */
if (eregi("config.inc.php", $_SERVER['PHP_SELF'])) { // redirect to calendar page header("Location: calendar.php"); exit; }
if(!defined("CONFIGURATION_INFO")) { define("CONFIGURATION_INFO", TRUE); class cal_config { /* This is the sql server name */ var $databasehost = 'localhost'; /* Name of the database used */ var $databasename = 'heimam'; /* Name used to connect to the server database. Must have read/write access */ var $databaseuser = 'mam'; /* Password used to connect to the server database */ var $databasepassword = 'mscmks';
function cal_config() { } } } ?>
|