C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\webkalender\config.inc.php


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         'webkalender';
        
/* Name used to connect to the server database.  Must have read/write access */
        
var $databaseuser         'admin';
        
/* Password used to connect to the server database */
        
var $databasepassword     'mscmks71s11f132n';

        function 
cal_config()
        {
        }
    }
}
?>