Basic php mysql method to prevent sql attack injection_PHP tutorial

WBOY
Release: 2016-07-13 17:10:04
Original
925 people have browsed it

We used the Magic Quotes that comes with the php tutorial to determine whether it is enabled. If so, use strips tutorial lashes, otherwise use mysql tutorial_real_escape_string to filter

//If Magic Quotes function is enabled

if (get_magic_quotes_gpc()) {
$name = stripslashes($name);
}else{
$name = mysql_real_escape_string($name);
}

mysql_query("SELECT * FROM users WHERE name='{$name}'");

Note: The mysql_real_escape_string function will not be effective until the mysql database tutorial connection is successful.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/629699.htmlTechArticleWe use the Magic Quotes that come with the php tutorial to determine whether it is enabled. If so, strip the tutorial and lashes otherwise. Just use mysql tutorial_real_escape_string to filter //If Magic Quotes function...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!