如何使用会话提交购物车PHP MYSQL

时间:2014-03-19 19:39:15

标签: php mysql session

在这里,我正在尝试创建一个名为submit_cart.php的页面,该页面应包含购物车页面中的所有购物车说明。

当前购物车页面位于:http://tinyurl.com/pueftbw

我还没有太多关于如何从cart.php继续会话到submit_cart.php

的线索

我需要它来显示所有产品详细信息,以便用户确认订单并提交。

cart.php中已有一个会话

任何人都可以建议我如何进行编码或帮助我进行一些代码布局。

我已经有了HTML。

这是我开始的PHP(它没有完成这项工作):

<?php 
session_start(); // Start session first thing in script
// Script Error Reporting
error_reporting(E_ALL);
ini_set('display_errors', '1');
// Connect to the MySQL database  
include"db_connection.php";  
?>
<?php
$quantity = "";
$each_item = "";
$description = "";
$bottle_price = "";
$country = "";
$wine_type = "";
?>

<?php
//$item_id = $each_item['item_id'];
foreach ($_SESSION["cart_array"] as $each_item) { 
    $item_id = $each_item['item_id'];
    $sql = mysql_query("SELECT * FROM WINE WHERE id='$item_id' LIMIT 1");
    while ($row = mysql_fetch_array($sql)) {
        $wine_type = $row["wine_type"];
        $bottle_price = $row["bottle_price"];
        $description = $row["description"];
    }
}
?>

这是HTML:

<body>
    <div id="pageMiddle"> 

    <table style="width:500px" border="0px">


        <tr>
          <td><p class="box"><b>each item:</b> <?php echo $each_item; ?></p></td>
          <td><p class="box"><b>Surname:</b> <?php echo $description; ?></p></td>       
        </tr>
        <tr>
          <td><p class="box"><b>Gender:</b> <?php echo $country; ?></p></td>
          <td><p class="box"><b>Country:</b> <?php echo $bottle_price; ?></p></td>      
          </tr>


    </table>
           </br>     
    </div>
</body>

0 个答案:

没有答案