【发布时间】:2011-04-29 00:50:34
【问题描述】:
我想将这些数据保存到 SESSION 中,以便用户可以修改它(作为原始购物车),但我需要在这里提供一些信息。
A) 信息来自 POST 表单。
B) 输出应如下所示:
SHOPING LIST
1. Coffe 5 units, 6 USD.
2. Banana 3 units, 3 USD.
3. Etc (The list can be infinite)
C) 这是我当前的代码,你可以看到没有会话。而且我需要用户能够添加更多项目。
<?php
//Variables
$item= $_POST['item'];
$quantity= $_POST['quantity'];
$code= $_POST['code'];
//List
$articulos = array(
'Pinaple' => 1, 'Banana' => 2, 'Aple' => 3,
'Milk' => 1, 'Coffe' => 3, 'Butter' => 1,
'Bread' => 2, 'Juice' => 1, 'Coconuts' => 1,
'Yogurt' => 2, 'Beer' => 1, 'Wine' => 6,
);
//Price
$price = $items[$item] * $quantity;
//Shoping List
echo "<b>Shopping List</b></br>";
echo "1. ".$item." ".$quantity." units".", ".$price." USD.";
//Back to index
echo "</br> <a href='index.html'>Back to Index</a>";
?>
【问题讨论】:
标签: arrays session variables save