This is my code:

$pass = mysql_query("SELECT `password` FROM acc WHERE account_id = '122' LIMIT 1;");
$p = mysql_fetch_object($pass);
$passwd = ( ( $p->password != "" ) ? $p->password : "empty" );

Then I'm doing echo $passwd; and it's always is retuning the "empty" string.

Of course the row with account_id 122 exists.

What is wrong with that?

link|improve this question

3  
well is it 122 or 133? – nycdan Jan 8 at 17:12
You're selecting row where account_id is 122, not 133. Typo? – Niklas Lindblad Jan 8 at 17:12
What does var_dump($p) show? – Niklas Lindblad Jan 8 at 17:13
is this a facepalm or a double facepalm? – Mike Nakis Jan 8 at 17:15
@Mike Nakis I've just facepalm'd while reading your comment. – Cyclone Jan 9 at 3:13
show 1 more comment
feedback

3 Answers

Try this code:

$query = mysql_query("SELECT * FROM `acc` WHERE `account_id`='122'") or die(mysql_error());
while($data=mysql_fetch_object($query)){
$pass = $data->password;
}
echo $pass

You should now be able to acces all fields from that row including the password field.

link|improve this answer
1  
You've misquoted account_id. – Ben Jan 8 at 17:18
feedback

what if you change

$passwd = ( ( $p->password != "" ) ? $p->password : "empty" );

to

$passwd = (empty($p->password)) ? $p->password : "empty" );
link|improve this answer
Still the same. – Cyclone Jan 9 at 0:15
feedback

You don't need the semi-colon at the end of your query. Why do you have a limit 1? acc should be unique on account_id as having multiple passwords for the same account should be impossible.

$pass = mysql_query("SELECT `password` FROM acc WHERE account_id = '122'");

As @shawn pointed out if your account_id is indeed a number it's better not to rely on the implicit character to number conversion. Though it doesn't actually matter it's not good practice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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