|
function article_del()
{
$this->load->helper('url');
$this->load->database();
$this->db->where('id', $this->uri->segment(4));
$this->db->delete('article');
$out =$this->db->affected_rows();
if($out>0)
{
echo "<script>alert('删除成功!!');history.back();</script>";
} else {
echo "<script>alert('删除失败!!');history.back();</script>";
}
}
提示删除成功对话框以后返回列表页, 删除的这条数据还在,数据库中已经删除了,在刷新一下页面上的数据也没了。新手 谁能给个解释,和解决方法。
|
|