vote up 1 vote down star
SELECT COUNT(*) AS test FROM %s WHERE id = %d AND tmp_mail <> ''

What are %s and %d for?

flag

2  
Using sprintf() is marginally better than string concatenation. For a more robust approach though, you should look at Prepared Statements – kizzx2 Jun 7 at 17:06

2 Answers

vote up 3 vote down check

Those are format symbols used e.g. by sprintf(). Example:

<?php
 $sql_template = "SELECT COUNT(*) AS test FROM %s WHERE id = %d AND tmp_mail <> ''";
 $sql_real = sprintf($sql_template, 'sometable', 12345);
 echo $sql_real;
?>

Output:

SELECT COUNT(*) AS test FROM sometable WHERE id = 1234 AND tmp_mail <> ''
link|flag
vote up 2 vote down

That are probably format symbols for string and decimal integer.

link|flag

Your Answer

Get an OpenID
or

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