-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
38 lines (29 loc) · 1.03 KB
/
config.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
32
33
34
35
36
37
38
<?php
//We start sessions
session_start();
/******************************************************
------------------Required Configuration---------------
Please edit the following variables so the members area
can work correctly.
******************************************************/
//We log to the DataBase
$con = mysql_connect("","schoolhunter_admin","admin123");
if (!$con){
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db('schoolhunter_DataBase', $con);
if (!$db_selected) {
die ('Can\'t use schoolhunter_DataBase : ' . mysql_error());
}
//Webmaster Email
$mail_webmaster = '[email protected]';
//Top site root URL
$url_root = 'http://schoolhunter.web.engr.illinois.edu/main.php/';
/******************************************************
-----------------Optional Configuration----------------
******************************************************/
//Home page file name
$url_home = 'main.php';
//Design Name
$design = 'default';
?>