PHP错误查看上个月和下个月的日历时

时间:2015-09-05 15:42:06

标签: php codeigniter calendar

在此处显示日历,但是当我点击下一个或上一个链接时,它会显示此错误:

  

找不到对象!在此服务器上找不到请求的URL。引用页面上的链接似乎是错误的或过时的。请通知该页面的作者有关错误的信息。如果您认为这是服务器错误,请与网站管理员联系。错误404

请有人帮助我!

项目名称:ci_series

的config.php

我将基本网址设为http://localhost/ci_series/'

         $config['index_page'] = '';

我使用了cordelginer框架。我的欢迎控制器是默认加载的。

的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);
    }

}

0 个答案:

没有答案