|
本帖最后由 ntdba 于 2013-2-5 11:21 编辑
( ! ) Fatal error: Call to undefined method Test_m::insert() in D:\workspace\work\application\controllers\user.php on line 11 | Call Stack | # | Time | Memory | Function | Location | 1 | 0.0017 | 81776 | {main}( ) | ..\index.php:0 | 2 | 0.0048 | 157192 | require_once( 'D:\workspace\work\system\core\CodeIgniter.php' ) | ..\index.php:202 | 3 | 0.0612 | 1368312 | call_user_func_array ( ) | ..\CodeIgniter.php:359 | 4 | 0.0612 | 1368312 | User->insert( ) | ..\CodeIgniter.php:0 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class User extends CI_Controller {
function insert()
{
$this->load->model("test_m");
$arr=array("uname"=>"u1","upass"=>"1234");
$this->test_m->insert($arr);
}
}
照视频教学,为什么出错啊?
|
|