|
![](static/image/common/ico_lz.png)
楼主 |
发表于 2011-5-27 15:46:47
|
显示全部楼层
加载了db?
model文件
<?php
class Mtest extends CI_Model {
function __construct()
{
parent::__construct();
}
function add(){
$name=$this->input->post('name');
$age=$this->input->post('age');
$address=$this->input->post('address');
$data = array(
'name' => '$name',
'age' => '$age',
'address' =>'$address'
);
$this->db->insert('add',$data);
}
}
?> |
|