PHP get_magic_quotes_gpc&mysql查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP get_magic_quotes_gpc&mysql查询相关的知识,希望对你有一定的参考价值。

<?php
echo get_magic_quotes_gpc();         // 1
echo $_POST['lastname'];             // O\'reilly
echo addslashes($_POST['lastname']); // O\\\'reilly

if (!get_magic_quotes_gpc()) {
    $lastname = addslashes($_POST['lastname']);
} else {
    $lastname = $_POST['lastname'];
}

echo $lastname; // O\'reilly
$sql = "INSERT INTO lastnames (lastname) VALUES ('$lastname')";
?>

以上是关于PHP get_magic_quotes_gpc&mysql查询的主要内容,如果未能解决你的问题,请参考以下文章

关于get_magic_quotes_gpc

get_magic_quotes_gpc 检测是否开启转义函数,5.4版移除后该怎么办?

get_magic_quotes_gpc 检测是否开启转义函数,5.4版移除后该怎么办?

多用户留言板

清理用户输入PHP

简单php-mysql注入检测