I got mysql error, do you have any idea where is the error? Thank you..
include_once('classes/settings.php');
$hookup = mysql_connect($dbhost,$dbuser,$dbpassword);
$dbselect = mysql_select_db($dbname);
$passx = md5($_POST["password"]);
$select = mysql_query("select name as name, email as email, retreatdate as retreatdate, roomstyle as roomstyle, bedoption as bedoption, rate as rate, coupon as coupon, hear as hear from user_tbl where username = '".mysql_real_escape_string($_POST[email])."' and password = '$passx'") or die(mysql_error());
$rowxx = mysql_fetch_array($select);
//the output is "No database selected"

mysql_select_db($dbname, $hookup)– tradyblix Jun 28 '12 at 10:54