Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"
share|improve this question
1  
1. Use PDO. 2. Are you sure selected database exists? 3. Are you sure that provided user/password has access to it? 4. Don't concatenate query parameters, use prepared statements (see 1). – Tomasz Kowalczyk Jun 28 '12 at 10:53
should be mysql_select_db($dbname, $hookup) – tradyblix Jun 28 '12 at 10:54
yes, it exist. yes, the username n password are right.. – ramsy Jun 28 '12 at 10:54
are you sure database exists? – GeoPhoenix Jun 28 '12 at 10:54
mysql_select_db($dbname, $hookup) is not working! – ramsy Jun 28 '12 at 10:55
show 1 more comment

closed as too localized by Lion, Greg, Tomasz Kowalczyk, Fahim Parkar, bažmegakapa Jun 28 '12 at 11:37

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Usually "No database selected" means your connection has not been succesfully created. Check your credentials ($dbhost, $dbuser, $dbpassword). Easiest way to do this is to echo them in the beginning of your script.

If you need more help than that I recommend that you share the related contents of settings.php to us (without showing the credentials in cleartext of course).

share|improve this answer

Use this way:

$hookup = mysql_connect($dbhost,$dbuser,$dbpassword);
$dbselect = mysql_select_db($dbname,$hookup);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.