0

我正在创建一个程序,其中有一个产品列表。我希望用户单击任何特定产品并查看其详细信息。我已经编写了以下代码。我将当前的 'product_id' 抓取到 $_SESSION 变量中,并在下一页中显示其详细信息。它的工作,但没有给我想要的输出,它为每个产品获取相同的 id。我认为这是因为我将其值存储在 $_SESSION 中。请检查它并告诉我正确的方法。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>

<?php 
session_start();

    include 'connect.php';

        $query=         mysql_query ("select product_id,name, price, description from products" );


        while ($query_array=    mysql_fetch_assoc($query))
        {
            echo '</br><pre>';





            $_SESSION['id']=    $query_array['product_id'];
            $product_id=     $_SESSION['id'];           

            echo "<a href='single_product.php?product_id=$product_id' >";
            print_r ($query_array['name']);
            echo    "</a>";

            print_r ($query_array['price']);

            echo "<img src= 'all_images.php' alt= 'Image'";

            echo '</pre>';


        }

?>
4

1 回答 1

3

您需要在 $_session 中定义 $row 而不是 $_session 到 $row

     $_SESSION['id']=    $query_array['product_id'];   //<---- must reverse it.
        $product_id=     $_SESSION['id']; 

尝试这个

       $product_id = $query_array['product_id'] ;
       $product_id = $_SESSION['id'];

或者您可以通过 $_GET 传递 ID

在你的代码中

   echo "<a href='single_product.php?product_id=$product_id' >";

您可以像在另一个文件中那样获取 product_id

     echo $_GET['product_id'] ;
于 2013-07-21T11:56:16.680 回答