|
<?php
class Insert extends __Construt{
function insert(){
parent::Controller();
$this->load->database();
}
function index(){
$this->load->view('insertnewsView');
}
function insertnews(){
$data=array(
'username'=>$_POST['username'],
'password'=>$_POST['password'],
);
$this->load->model('insertModel');
$this->insertModel->insert($data);
echo "插入数据成功";
}
}
?>
这是我的代码为什么检测运行的时候报错:Fatal error: Call to undefined method CI_Controller::controller() in D:\AppServ\www\mykingdom\application\controllers\insert.php on line 6
求帮忙 |
|