I can't figure out what is wrong since my codes are correct.
$host="localhost";
$username="";
$password="";
$db_name="database";
$tbl_name="members";
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("Cannot Find Database");
Keeps on saying the die statement.
I'm using WAMP, and yes. my database name is "database" and table is name is "member".
Or is my db name is a reserve word.