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?