我想给$ config提供特定的网址[' base_url'] ="&#34 ;;在分页中。 网址为http://localhost/ci/index.php/listing。 我项目的流程是这样的 | - > admin_login(用户在这里登录) | - > list_menu(登录后,选择链接列表) | - >列表(这里我想表明我的分页)
我的基本网址设置为:http://localhost/ci 和路由pagwe设置为:admin_login page。
所以请帮我解决这个问题。我是codeigniter的新手。
我的控制器文件 listing.php
public function index()
{
// Pagination start here //
//pagination settings
$config['base_url'] = site_url('listing/index');
$config['total_rows'] = $this->db->count_all('student_info');
$config['per_page'] = "5";
$config["uri_segment"] = 3;
$choice = $config["total_rows"] / $config["per_page"];
$config["num_links"] = floor($choice);