0

当我单击分页的第二页时,我在前端索引页面中有example.com分页,我想加载页面,例如example.com/1

<?php 

function index()
{
    $e = $this->employer_model->count_jobs_with_employer();
    //print_r($e) ;
    $config['base_url'] = $this->config->site_url(); //set the base url for pagination
    $config['total_rows'] = $e; //total rows
    $config['per_page'] = '10'; //the number of per page for pagination
    $config['uri_segment'] = 1; //see from base_url. 3 for this case        
    $config['first_link'] = 'First';
    $config['last_link'] = 'Last';

    $config['full_tag_open'] = '<div class="pagination">';
    $config['full_tag_close'] = '</div>';
    $this->pagination->initialize($config); //initialize pagination

    $page  = ($this->uri->segment(1)) ? $this->uri->segment(1) : 0;

    $joblist['listemp'] = $this->employer_model->employerbyjob($config['per_page'], $page); 
    foreach($joblist['listemp'] as $emp)
    {
        $joblist['jobs'][$emp->u_id] =   $this->employer_model->get_ByTbl_Col('employer_post_job', 'e_id', $emp->u_id,'dead_line', date('Y-m-d'));  
    }

    $c['job_list'] = $this->load->view('front/blocks/employer/job_list', $joblist, TRUE);
}
?>
4

1 回答 1

1

像这样的东西应该工作:

应用程序/配置/路由.php:

//default routes:
$route['default_controller'] = "yourcontroller";
$route['404_override'] = '';

// your custom route:
$route['(:num)'] = "yourcontroller/index/$1";

应用程序/控制器/Yourcontroller.php

function index($page = null)
{

}
于 2013-09-04T12:25:33.780 回答