-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
40 lines (28 loc) · 1.11 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
39
40
<?php
// Your name(s) -- used for grading and presentation
$authors = array('Gal Cohen');
// Local MySQL username (the one used to login into this machine)
$sql_username = '';
// Local MySQL password (the one used to login into this machine)
$sql_password = '';
// Remote MySQL username (the one used in Phase II)
$daily_username = '';
// Remote MySQL password (the one used in Phase II)
$daily_password = '';
//----------------------------------------------------------------------
// DO NOT ALTER ANYTHING AFTER THIS POINT
//----------------------------------------------------------------------
// Local MySQL database name
$sql_database = 'projects';
// Local MySQL server address
//$sql_address = 'mysql://$OPENSHIFT_MYSQL_DB_HOST:$OPENSHIFT_MYSQL_DB_PORT/';
$sql_address = "";
// Remote MySQL database name
$daily_database = 'price';
$daily_address = '';
// Enable error reporting -- so you can see when/where there is an error in your code!
error_reporting(E_ALL);
ini_set('display_errors', '1');
// Begin timer - used to calculate time page took to load
$start_time = microtime(true);
?>