本帖最后由 佛缘 于 2012-6-18 14:47 编辑
这段是model,在构造函数中链接数据库,里面有一个插入的方法
PHP复制代码 <?php
if (! defined ( 'BASEPATH' ))
exit ( 'No direct script access allowed' );
class Newstype_m extends CI_Model {
function __construct () {
$this->load->database ( 'mynews' );
}
function newstype_insert ($arr) {
$this->db->insert ( 'NewsType', $arr );
}
} 复制代码
这段是控制器代码,在构造函数中加载model,就因为记载这个model,就报错,我是安装官方文档的例子做的。
PHP复制代码
<?php
if (! defined ( 'BASEPATH' ))
exit ( 'No direct script access allowed' );
class Newstype extends CI_Controller {
public function __construct () {
parent ::__construct ();
$this->load->model ( "newstype_m" );
}
public function index () {
$this->load->view ( "newstype/index" );
}
public function create () {
$this->load->view ( "newstype/create" );
}
public function post () {
}
}
复制代码
错误提示如下:
|