|
楼主 |
发表于 2010-6-22 18:36:21
|
显示全部楼层
本帖最后由 snllll 于 2010-6-22 18:38 编辑
PHP复制代码 $data = array(
'baioti' => $this->input->post('biaoti'),
'neirong' => $this->input->post('neirong'),
'zuozhe' => $this->input->post('zuozhe'),
'shijian' => (string ) date('Y-m-j'),
);
$this->db->insert('news',$data); 复制代码
之后按照我的做法:
PHP复制代码 $data =$_POST;
$data["shijian"]=(string ) date('Y-m-j');
$this->db->insert('news',$data); 复制代码
以上代码因为字段太少,不会有很明显的缩短,但是当你添加的内容需要很多字段的时候,可以明显缩短许多许多!
行了,到此为止!
当然这样用的前提是,表单中的域要与数据库中的字段要对应,而且要在控制器中对提交来的数据做好必要的数据输入安全校验。 |
评分
-
查看全部评分
|