Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the warning:

user warning: Unknown column 'student2' in 'where clause' query: SELECT first, last, id FROM sgp_student_log WHERE username1 =student2 in .../public_html/includes/common.inc(1731) : eval()'d code on line 18.

Here is the code:

<?
global $user;
$rus = db_query("SELECT first, last, id FROM {student_log} WHERE username1 =%s", $user->name); 
$ruw = db_fetch_array($rus);
print_r($ruw);
?>

OF COURSE SOMETHING LIKE the following will work

<?
global $user;
$res = db_query("SELECT first, last, id FROM {student_log} WHERE username1 ='student2'"); 
$row = db_fetch_array($res);
print_r($row);
?>
share|improve this question
1  
You need to quote string literals e.g. '%s' (remembering to ensure they have been escaped against SQL injection attacks). Or better yet, pass them as parameters to prepared statements. – eggyal Jan 21 at 23:50
what is a prepared statement? What are string literals? What does 'escape them against sql injections' mean? – ingrid Jan 21 at 23:51
1  
'student2' is a string literal, in that you want MySQL to interpret it as a literal string of characters (rather than an SQL token or identifier, such as the name of a column). String literals must be quoted in SQL, or else MySQL will not realise that's what it is. Follow the links above to learn about prepared statements and SQL injection. – eggyal Jan 22 at 0:00
Thanks. Should I delete the question? You were right, simply needed to add the '' around %s. – ingrid Jan 22 at 0:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.