10/10/2018, 00:21
Cần giúp đỡ về CodeIgniter
Em mới bắt đầu tìm hiểu về CodeIgniter.
Gặp lỗi :
Fatal error: Class 'Controller' not found in D:xampphtdocscisystemapplicationcontrollers home.php on line 2
Mong mọi người chỉ cho mình biết cách sửa lỗi này.
Thanks!
Gặp lỗi :
Fatal error: Class 'Controller' not found in D:xampphtdocscisystemapplicationcontrollers home.php on line 2
Mong mọi người chỉ cho mình biết cách sửa lỗi này.
Thanks!
Bài liên quan
{
// T?o phuong th?c xây d?ng cho l?p
function Home()
{
//G?i phuong th?c xây d?ng c?a l?p cha
parent::Controller();
}
function index()
{
$this->data['heading'] = 'Welcome to ...';
$this->data['content'] = 'Thu nghiem ';
$this->load->view("content",$this->data);
}
}
[=========> Bổ sung bài viết <=========]
class Home extends Controller // Lỗi ko tìm thấy Class Controller
{
function Home()
{
parent::Controller();
}
function index()
{
$this->data['heading'] = 'Welcome to ...';
$this->data['content'] = 'Thu nghiem ';
$this->load->view("content",$this->data);
}
}