You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
293 B
11 lines
293 B
<? |
|
# DB config |
|
$mysql_host = "localhost"; |
|
$mysql_user = "cwops"; |
|
$mysql_pass = "cwops"; |
|
$mysql_dbname = "CWops"; |
|
$db = mysqli_connect($mysql_host,$mysql_user,$mysql_pass,$mysql_dbname) or die |
|
("<h1>Sorry: Could not connect to database.</h1>"); |
|
mysqli_query($db, "SET time_zone='+0:00';"); |
|
|
|
?>
|
|
|