Use mysql_real_escape_string on the server to clean client data _ MySQL

Source: Internet
Author: User
Tags web database
The server uses mysql_real_escape_string to clean the client data bitsCN.com.

Because mysql_real_escape_string requires MySQL database connection, you must connect to the MySQL database before calling mysql_real_escape_string.

PHP:
Function mysqlClean ($ data)
{
Return (is_array ($ data ))? Array_map (mysqlClean, $ data): mysql_real_escape_string ($ data );
}
?>

Call method
PHP:

$ Conn = mysql_connect (localhost, user, pass );
...

$ _ POST = mysqlClean ($ _ POST );
?>

The cleaned data can be directly inserted into the database.

Note! Mysql_real_escape_string can be used only when (PHP 4> = 4.3.0, PHP 5. Otherwise, only mysql_escape_string can be used. The difference between the two is:

Mysql_real_escape_string considers the current character set to be connected, while mysql_escape_string does not.


Because mysql_real_escape_string requires MySQL database connection, you must connect to the MySQL database before calling mysql_real_escape_string.


When we know that the data type is string, we can limit the length of the string while cleaning the data. This method comes from David Lane, Hugh E. Williams Web Database Application with PHP and MySQL (OReilly, May 2004)

PHP:

Function mysqlClean ($ array, $ index, $ maxlength)
{
If (isset ($ array [$ index])
{
$ Input = substr ($ array ["{$ index}"], 0, $ maxlength );
$ Input = mysql_real_escape_string ($ input );
Return ($ input );
}
Return NULL;
}
?>


Call method:
PHP:

$ Conn = mysql_connect (localhost, user, pass );

If (isset ($ _ POST [username])
{
$ _ POST [username] = mysqlClean ($ _ POST, username, 20 );
Echo $ _ POST [username];
}
?>

Clean the username in the $ _ POST array and extract the first 20 characters.

BitsCN.com

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.