|
发表于 2012-8-19 22:25:42
|
显示全部楼层
lichaoying 发表于 2008-10-15 15:07 
四、创建数据库模型
在 system/application/models 文件夹内,创建一个 mtest.php 的文件,如下:
////////////////////////我要修改这个函数 才能使用 /////这应当是配置问题还是其他问题//求教 ////
function adduser(){
$data=array(
'name'=> $this->input->post('name'),//
'age'=> $this->input->post('age'),//
'sex'=> $this->input->post('sex')//
);
$this->db->insert('users', $data);
} |
|