10 server-side cleaning of client data with mysql_real_escape_string

Source: Internet
Author: User
Tags php and mysql web database

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

Php:
<?php
function Mysqlclean ($data)
{
Return (Is_array ($data))? Array_map (Mysqlclean, $data): Mysql_real_escape_string ($data);
}
?>

Calling methods
Php:

<?php
$conn = mysql_connect (localhost, user, pass);
...

$_post = Mysqlclean ($_post);
?>

Clean data can be inserted directly into the database.

Attention! Mysql_real_escape_string must be used in cases (PHP 4 >= 4.3.0, PHP 5). Otherwise only use mysql_escape_string, the difference between the two is:

Mysql_real_escape_string takes into account the current character set of the connection, and Mysql_escape_string does not consider it.


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


When we know that the data type is a 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:

<?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:

<?php
$conn = mysql_connect (localhost, user, pass);

if (Isset ($_post[username]))
{
$_post[username] = Mysqlclean ($_post, username, 20);
Echo $_post[username];
}
?>

Cleans the username in the $_post array and intercepts the first 20 characters.

Transfer from http://www.2cto.com/database/201006/50354.html

10 server-side cleaning of client data with mysql_real_escape_string

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.