当我输入任何具有underscore (_)
数据的输入将存储到我的数据库时出现问题,如下所示image\_background.png
实施例
$image = stripslashes($_POST['image']); // example image name image_background.png
$query = 'UPDATE product SET image="'. $db->string_escape($image, true).'" WHERE id="'. intval($id).'"';
输入仅有underscore
时出现的问题。如果没有下划线,则stripslashes
让我知道。
答案 0 :(得分:1)
$ db-> string_escape添加它?
你为什么一直使用striplashes?