PHP to implement the implementation of the MySQL statement code _php skills

Source: Internet
Author: User
It is impossible for you to escape each of these special characters, especially if you are dealing with the content automatically submitted by the form.

So, you should use the Mysql_real_escape_string function:

Mysql_real_escape_string-the special characters in the string used in the escape SQL statement, taking into account the current character set of the connection.

But note: This function does not escape% and _. In addition, it is best not to use the function for the entire SQL statement, but to only escape the string parameters of the incoming SQL statement, otherwise unexpected results will occur.

Examples of scripts:
Copy Code code as follows:

<?php
$item = "Zak ' s and Derick ' s laptop";
$escaped _item = mysql_real_escape_string ($item);
printf ("Escaped string:%s\n", $escaped _item);
?>
Related Article

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.