Считать строки в нумерации страниц и показать это? - PullRequest
1 голос
/ 16 августа 2011

Я использую codeigniter и класс (library) pagination в нем.
Почему этот код не работает для counting rows в нумерации страниц, например:

Существующая строка: 4 -> Показано с 1 по 4 из 9

или

Существующая строка: 4 -> Показано с 4 по 8 из 9

или

Существующая строка: 1 -> Показано с 8 по 9 из 9

и

прочее


$this->load->library('pagination');
    //$this->load->library('Jquery_pagination');
    $config['base_url'] = base_url().'admin/accommodation/show';
    $config['uri_segment'] = 4;
    $config['total_rows'] = $this->db->count_all('hotel_submits');
    $config['per_page'] = '4';
    //$config['div'] = '#num_count'; /* Here #content is the CSS selector for target DIV */
    $config['num_links'] = 10000;
    $config['full_tag_open'] = '<div id="pagination">';
    $config['full_tag_close'] = '</div>';

    $this->pagination->initialize($config);

    $offset = (int) $offset; // just to make sure nothing funky gets in here
    $data['results'] = $this->db->query("SELECT @rownum:=@rownum+1 rownum, t.*
    FROM (
        SELECT *
        FROM hotel_submits
        ORDER BY id desc
        LIMIT $offset, 4    
    ) t,
    (SELECT @rownum:=0) r");

/////////////////////////////////////////////////////////////////

$curr_offset = $this->uri->segment($config['uri_segment']);
        $info = 'Showing ' . ( $curr_offset + 1 ) . ' to ' ;

        if( ( $curr_offset + $config['per_page'] ) < ( $config['total_rows'] -1 ) )
            $info = $curr_offset + $config['per_page'];
        else
            $info = $config['total_rows'];

        $info = ' of ' . $config['total_rows'] . ' | ';

        $data['num_count'] = $info;

/////////////////////////////////////////////////////////////////

$this->load->view('admin/accommodation_submit_show', $data);

Выходной код: of 9 |

1 Ответ

1 голос
/ 16 августа 2011

В нескольких местах:

$info .= 
      ^
...