Undid that last change

It was a red herring
This commit is contained in:
jcreek
2014-11-04 00:45:03 +00:00
parent 8c4f48a73d
commit 6b271ba203
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ $dbname = "assassins"; // the name of the database that you are going to use for
$dbuser = "root"; // the username that you created, or were given, to access your database
$dbpass = "root"; // the password that you created, or were given, to access your database
mysqli_connect($dbhost, $dbuser, $dbpass) or die("MySQL Error: " . mysqli_error());
mysqli_select_db($dbname) or die("MySQL Error: " . mysqli_error());
mysql_connect($dbhost, $dbuser, $dbpass) or die("MySQL Error: " . mysql_error());
mysql_select_db($dbname) or die("MySQL Error: " . mysql_error());
//echo "success in database connection."; //Uncomment this line if you want to check if a page is loading this database connection code
?>