标签:删除 for ati 表名 条件 this load red where
information为表名
array(‘id‘=>8)为where条件语句
插入语句
$sql="insert into information (name,sex) values(‘jj‘,‘22‘)";
$query=$this->db->query($sql);
修改语句
$data=array(
‘name‘=>‘nihao‘,
‘sex‘=>‘33‘
);
$query=$this->db->update(‘information‘,$data,array(‘id‘=>8));
查询语句
$data=$this->db->query(‘select * from information‘);
$query=$data->result();
删除语句
$query=$this->db->delete(‘information‘,array(‘id‘=>‘8‘));
重定向
$this->load->helper(‘url‘);
redirect(‘控制器名‘);
标签:删除 for ati 表名 条件 this load red where
原文地址:http://www.cnblogs.com/dyj--php/p/7814086.html