gpt4 book ai didi

php - URL包含参数时无法在查看页面显示结果

转载 作者:行者123 更新时间:2023-11-29 15:51:23 25 4
gpt4 key购买 nike

我正在尝试根据 URL 参数从数据库中获取数据。以达到更新表格的目的。查询已成功执行,没有任何问题。此获取值在 Controller 中正确显示,但我无法在 View 页面上打印

My controller:
public function edit_staff(){
$userid = $this->uri->segment(4);
if (empty($userid))
{
show_404();
}
$data['staffs']=$this->Admin->edit_staffs($userid);
print_r($data['staffs']);
echo $data['staffs']['id'];
$this->load->view('admin/dashboard/edit_staff', $data);

}

My model:
function edit_staffs($userid){
$this->db->select('*');
$this->db->from('staffs');
$this->db->where('id',$userid);
$query = $this->db->get();
$result = $query->row_array();
return $result;
}

My view shows:
Unable to load the requested file: admin/dashboard/edit_staff.php

URL for view page:
http://localhost/groport/admin/dashboard/edit_staff/18

我希望显示查看页面并打印员工详细信息

最佳答案

确保文件 application/views/admin/dashboard/edit_staff.php 存在。

检查 CI documentation有关 CI View 的更多详细信息

关于php - URL包含参数时无法在查看页面显示结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56753391/

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