0
我想加載CI會議, 這裏是我的類及其構造
class User extends CI_Controller {
function __construct() {
$data = array('name'=>'Hussain','password'=>'rahimi');
$this->load->library('session');
} // __construct()
}
它給了我下面的錯誤:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: User::$load
Filename: controllers/user.php
Line Number: 5
有人能幫助我嗎?提前致謝。
感謝KA_lin它的工作。 – hussainfrotan