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('数据修改失败') }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)