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
お知らせ下さい。