我有插入单引号的列。因为$this->db->query
已经处理了所有特殊字符。但我的问题是我在插入时插入像ganesh 这样的数据,只插入 ganesh;缺少单引号后的数据。所以我开始使用$this->db->escape
,但这会在我的数据中添加单引号,这不是如何防止这种情况所必需的
我的代码
$sql="insert into tablename (list_name,list_address) values(?,?)"
$res=this->db-query($sql,array($name,$add));
我的错误是在前端。不是后端。我将删除问题。