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
248 B
11 lines
248 B
4 years ago
|
<?
|
||
|
# 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>");
|
||
|
|
||
|
?>
|