|
<?php
if (! defined ( 'BASEPATH' ))
exit ( 'No direct script access allowed' );
class Calendar extends CI_Controller {
function __construct() {
parent::__construct ();
$this->load->library('calendar');
$this->calendar->generate();
}
public function index() {
$this->load->view ( 'component/calendar' );
}
}
?>
以上是我的代码,用的是最新版的CI,为什么浏览器返回"NetworkError: 500 Internal Server Error,要用这个日历类还需要配置什么地方吗?
|
|