在此处显示日历,但是当我点击下一个或上一个链接时,它会显示此错误:
找不到对象! 在此服务器上找不到请求的URL。引用页面上的链接似乎是错误的或过时的。请通知该页面的作者有关错误的信息。 如果您认为这是服务器错误,请与网站管理员联系。 错误404
Please please please someone help me!!
Project name: ci_series
config.php I set the base url as http://localhost/ci_series/'
$config['index_page'] = '';
I used cordelginer framework.My welcome controller is the one defaultly loading.
welcome.php
<?php
class Welcome extends CI_Controller {
function index()
{
$this -> display( $year=null, $month=null);
}
//display function
function display($year=null, $month=null)
{
$conf= array(
'start_day'=>'monday',
'show_next_prev' => true,
'next_prev_url' => base_url(). 'display'
);
$this->load->library('calendar',$conf);
echo $this->calendar->generate( $year, $month);
}
}