我正在使用 mysql_real_escape_string 函数从文本中转义特殊字符以将数据插入到数据库中。如果我使用变量它不起作用。
echo $ab=$_POST['textarea'];
when I print $ab it is showing like the following text;
$ab= ction throws js error we'll special charac
echo $av=mysql_real_escape_string($av);
当我打印 $av 时,它显示以下字符串
ction throws js error we'll special charac
当我在插入查询中使用 $av 值时,它仅在数据库中插入一半测试“操作引发 js 错误我们”。请让我知道我该如何解决。