我无法从 $_GET 变量中检索 id。我正在尝试更新具有特定 ID 的数据库中的表。问题是,我可以在地址栏上看到 id,但无法通过 $_GET 检索它,这是代码。这里我只分享部分代码。请检查并指导我。
<?php
session_start();
include 'connect.php';
$id= $_GET['product_id'];
$select_query = "select * from products LEFT JOIN product_description
ON products.product_id='".$_GET['product_id']."' and
product_description.product_id='".$_GET['product_id']."'
where products.product_id='".$_GET['product_id']."' ";
if(!$select_query_run = mysql_query($select_query))
{
echo mysql_error();
}
else
Notice: Undefined index: product_id in
F:\xampp\htdocs\CMS\update_single_product.php on line 36
如果我改用$id
它,它会给我第 4 行的错误。
/cms/update_single_product.php?product_id=159
**
我做了一些改变,它现在可以工作了。我仍然不知道它是如何修复的,但它的工作原理:)
**