14 Security Tips For Developing With PHP and MySQL

Posted on January 1, 1970

Do not use user input directly in your SQL queries. Use mysql_real_escape_string() to escape the user input. PHP.net recommends this function: (well a little different). PLAIN TEXT. PHP:. function escape($values) { …

Here is the original:
14 Security Tips For Developing With PHP and MySQL

» Filed Under security

Comments

Leave a Reply