php 本地数据库所有新增失败,查看,删除,更新没有问题,请问大牛是什么原因?
2个回答
展开全部
你这肯定有毛病啊,变量赋值不对,查询条件都没有,你这样即使不出错,也会把整个表都修改了的
Public function Update(){ $m=M('wish'); $d["id"]=$_POST['id']; $d["title"]=$_POST['title']; $d["content"]=$_POST['content']; $d["author"]=$_POST['author']; $where["查询字段"]=查询的值; //这里替换成你要查询的字段和查询的条件值就可以了 $count=$m->where($where)->save($d); if($count>0){ $this->success('数据修改成功',U('Admin/MsgManage/index')); }else{ $this->error('数据修改失败'); }
Public function Update(){ $m=M('wish'); $d["id"]=$_POST['id']; $d["title"]=$_POST['title']; $d["content"]=$_POST['content']; $d["author"]=$_POST['author']; $where["查询字段"]=查询的值; //这里替换成你要查询的字段和查询的条件值就可以了 $count=$m->where($where)->save($d); if($count>0){ $this->success('数据修改成功',U('Admin/MsgManage/index')); }else{ $this->error('数据修改失败'); }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询