Okay, so there's all these different string-escaping functions such as htmlentities(), mysql_real_escape_string(), addslashes()
But which should I use in what situation?
Resources and opinions please :)
| show 1 more comment |
In summary:
|
|||||||||||||||||||||
|
|
|||||||||||||||||||||
|
|
when you insert data to a mysql database use this:
when you're going to display content a user gave you:
if you database doesn't have it's own function in php, you could use:
see this for more info: Htmlentities vs addslashes vs mysqli_real_escape_string P.S you should use mysqli_real_escape_string(), not mysql_real_escape_string(). EDIT: to really prevent attacks, this is good reading material : http://www.php.net/manual/en/security.database.sql-injection.php... You should also look into prepared statements: http://www.php.net/manual/en/mysqli.prepare.php a lot of info is also available here on stack overflow. |
|||||||||
|
|
It's all a variation on the same theme:
Blindly concatenating strings together may lead to syntax violations if the strings are supposed to follow a special syntax. At best this is an annoyance, at worst a security problem. Escaping values prevents these problems. Generic example:
All the different functions are escaping values properly for different syntaxes:
|
||||
|
|
htmlspecialchars(). The important thing is that you use this on your output, not before storing in a database (creating false sense of security, for one thing). If I've missed something please point it out, there's a lot of useful comments here that are buried. – Wesley Murch Apr 24 '11 at 16:28