2011-04-29 90 views
1

我在分配工作,我想将数据保存到SESSION中,以便用户可以修改它(作为原始购物车),但是我需要在这里使用一些光源。PHP:将变量变为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>"; 


?> 

回答

1
$_SESSION["foo"] = "bar"; 

还要确保您拨打session_start()之前任何输出到文件。我无法强调这一点。我甚至在DOCTYPE减速之前说话。

那么你应该能够从任何地方做以后..

echo $_SESSION["foo"]; // output: bar 
$_SESSION["foo"] = "new bar"; 
$_SESSION["new foo"] = $_SESSION["foo"]; 

$_SESSION["items"] = array("pants", "hat"); 
array_push($_SESSION["items"], "shirt");