I was wondering is it possible to just my_sql_escape string the whole $_POST and $_GET array so you dont miss any variables?
Not sure how to test it or I would've myself. Thanks!
|
I was wondering is it possible to just my_sql_escape string the whole $_POST and $_GET array so you dont miss any variables? Not sure how to test it or I would've myself. Thanks! |
||||
|
|
|
I would use the
However, make sure that you don't rely on this line to completely protect your database from attacks. The best protection is limiting character sets for certain fields. Ex. Email's don't have quotes in them (so only allow letters, numbers, @, dashes, etc.) and names don't have parenthesis in them (so only allow letters and selected special characters) EDIT: Changed |
|||||||||||||||
|
Though, I would recommend using MySQLi instead. |
|||||||||||||
|
|
you can use
and after this to access post data use |
|||
|
|