vote up 0 vote down star

How do I add the SQL wildcard characters to this:

 sprintf("SELECT robot FROM robots WHERE robot LIKE '%s'",strtolower($user_agent));

as

 sprintf("SELECT robot FROM robots WHERE robot LIKE '%%s%'",strtolower($user_agent));

blows up in a spectacular ball of flame,

PS sorry for the rather basic question. I'm cutting down on my coffee these days.

flag

Why use sprintf here (no formatting) instead of string concatenation or simple variable substitution? – PhiLho Dec 16 '08 at 12:17
Side note: you're opening yourself to code injection by using such constructs... – Keltia Dec 16 '08 at 12:53

1 Answer

vote up 12 vote down check

A literal % is specifed as %%, so you want "... LIKE '%%%s%%'"

link|flag
perfect thank you RoBorg! – Pickledegg Dec 16 '08 at 11:23
another accepted answer for RoBorg :) – tharkun Dec 16 '08 at 11:52
Keep voting this up, I don't have a gold badge yet :p – Greg Dec 16 '08 at 11:57

Your Answer

Get an OpenID
or

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