|
楼主 |
发表于 2010-1-5 15:58:45
|
显示全部楼层
插入数据操作总结:
1.使用xss过滤
例如:
$data = array('entry_id'=> $this->input->xss_clean($this->input->post('entry_id')),
'body' => $this->input->xss_clean($this->input->post('body')),
'author' => $this->input->xss_clean($this->input->post('author'))
) ;
2.使用AR类进行操作 (所有的值已经被自动转换为安全查询,所以不需要进行转义)
$this->db->insert('comments',$data) |
|