我是codeigniter的新手并做了一些教程,我遇到了这个问题。这是我的模型的系数
if(!defined('BASEPATH')) exit('No direct script access allowed');
class Wip_model extends CI_Model
{
function __construct()
{
// call the model constructor
parent::__construct();
// this is the line 14 error
}
}
请帮助.......
这是调用它的控制器中的函数
public function __construct()
{
parent::__construct();
$this->load->library('session');
$this->load->helper('form');
$this->load->helper('url');
$wipDB = $this->load->database('WIPDB',TRUE);
$this->load->library('form_validation');
// load the model
$this->load->model('wip_model');
}