I am trying to display a list of my book However I can't select the database:
this is a piece of my code:
<?php
$mysql_hostname = "localhost";
$mysql_user = "";
$mysql_password = "";
$mysql_database = "mag_rocket";
$prefix = "";
$bd = mysql_connect($mysql_hostname) or die("Could not connect database");
mysql_select_db($mysql_database, $bd) or die("Could not select database");
?>
I am substituting some things here in this example but all my credentials are correct including my db server username, password and forum db name. So what is the problem?