gpt4 book ai didi

php - 如何从 codeigniter 中的 URL 获取 id?

转载 作者:可可西里 更新时间:2023-10-31 22:52:50 24 4
gpt4 key购买 nike

我正在尝试从 URL 获取“id”以删除特定的选定产品。我使用了 $this->uri->segment(3) 但它没有从 URL 中获取任何值。虽然我可以在我的 URL 中看到“product_id”。

如果我使用 $this->url->segment(2) 它会给我第二个值形式的 URL,但我无法获得产品 ID。以下是我的代码。请指导我。

查看

echo "<a href='delete_controller?product_id=$product_id'>";
echo $name;
echo "</a>";

当我点击 $name 时生成以下 URL。

http://localhost/designs2/index.php/products_controller/delete_controller?product_id=70

Controller

public function delete_controller()
{
echo $product_id =$this->uri->segment(3);
echo "Taha";
$this->load->view('delete_confirmation');
}

最佳答案

检查下面的代码希望你得到你的参数

echo $this->uri->segment('3');

关于php - 如何从 codeigniter 中的 URL 获取 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21180115/

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