How do I escape quotes in php when trying to query mysql database. Without adding addslashes on every value:
$fname=addslashes("Value's with quote''s'");
$lname=addslashes("Value's with quote''s'");
|
How do I escape quotes in php when trying to query mysql database. Without adding addslashes on every value:
| |||
|
feedback
|
|
You ought to escape special characters (not only quotes) on every string value (it's useless to escape values you're not going to enclose in quotes in a query, those values require another treatment). To avoid boring repetitive typing you can apply escaping function to array items in a loop. in case you're using Mysql and for INSERT/UPDATE queries you can use this helper function
used like this
also don't forget to set proper encoding using | ||||
|
feedback
|
|
The proper way is using prepared statements, e.g. via PDO. If you can't do that, you have to process all values which are passed into a database query with | |||
|
feedback
|
|
A good idea would be using PDO prepared statements as described here. It will automatically escape those characters. | |||||||||
feedback
|
|
Firstly, don't use The correct solution depends on the database you're using. Assuming you're using MySQL, the correct function to use instead of You probably notice that using this on every line is even more verbose than If your fields are all separate variables (as per your example), then you're really stuck with doing that for a bunch of lines of code. If you're using an array (eg
A more up-to-date method for doing SQL is to use an object model rather than manually building the queries. PHP has a number of libraries that may help: | |||||||||
feedback
|
mysql_real_escape_string(), but considerPDOwith prepared statements. – Bracketworks Mar 22 '11 at 12:10