10 lines
387 B
PHP
10 lines
387 B
PHP
|
|
<?php
|
||
|
|
$db_host="joeyajames.powwebmysql.com"; // Host name
|
||
|
|
$db_username="f8lexception"; // Mysql username
|
||
|
|
$db_password="Kim157"; // Mysql password
|
||
|
|
$db_name="f8lexception"; // Database name
|
||
|
|
|
||
|
|
// Connect to server and select database.
|
||
|
|
$db_connect = mysql_connect("$db_host", "$db_username", "$db_password")or die("cannot connect");
|
||
|
|
//mysql_select_db("$db_name")or die("cannot select DB");
|
||
|
|
?>
|