gpt4 book ai didi

php - 返回分页中的同一页面

转载 作者:行者123 更新时间:2023-11-29 17:47:37 24 4
gpt4 key购买 nike

| Item | Stock | Description | Action 
| Book | 5 | PHP Books | Edit
| Pen | 14 | Gold Pen | Edit
| Pen2 | 2 | Silver Pen | Edit

|Previous|1|2|**3**|4|5|Next|

我的第 3 页表格中有一些项目,我想编辑一个项目,当我单击“保存数据”时,我想返回到同一页面的此表格。

现在,当我点击“保存”时,我将返回到第 1 页

也许你有阅读的引用,或者其他什么,因为我不知道关键字。

最佳答案

在表单的隐藏字段中添加页码。

表单提交后,重定向到该页面

页码是您传递给 Controller ​​函数的参数:公共(public)函数索引($page_nbr = 0)

这是一个例子:

public function index($page_nbr = 0)
{
$this->load->library('pagination');
$config['base_url'] = '/users/index/';
$config['total_rows'] = $this->users_model->count_users();
$config['per_page'] = 40;
$this->pagination->initialize($config);
$data['pagination'] = $this->pagination->create_links();
$data['current_page_number'] = $page_nbr;
$this->run('users', $data);
}

关于php - 返回分页中的同一页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49676198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com