$test = sprintf("SELECT * FROM `table` WHERE `text` LIKE '%%s%'", mysql_real_escape_string('test'));
echo $test;
output:
SELECT * FROM `table` WHERE `text` LIKE '%s
but it should output:
SELECT * FROM `table` WHERE `text` LIKE '%test%'
|
|
To print the |
|||
|
|
|
Try:
In |
|||
|
|
|
You need to escape the percent signs with a percent sign
|
|||
|
|
|
You’re jumbling contexts. For consistency, put the things that aren't inside the SQL single quotes outside of the sprintf() format string:
|
|||
|
|
|
||||
|
|
|
This one helped me out with example http://www.encodez.com/blog/2009/11/escaping-in-mysql-like-statement-when-sprintf |
|||
|
|