Several functions for anti-SQL injection

Source: Internet
Author: User

Do not trust the user's input in the login, you need to process the user's input

SQL injection:

' or 1=1 #

Several functions to prevent SQL injection:

Addslashes ($string): Use a backslash to refer to a special character in a string ' "\

$username =addslashes ($username);

Mysql_escape_string ($string): Use backslashes to escape special characters in a string for mysql_query () queries.

$username =mysql_escape_string ($username);

Mysql_real_escape_string ($string): Escapes special characters in the string used in the SQL statement and takes into account the current character set of the connection to ensure that the function is currently connected, otherwise a warning is reported. Do not escape% with _

$username =mysql_real_escape_string ($username);

Several functions for anti-SQL injection

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.