我在将购物车中的订购商品发送到paypal时遇到问题
我无法获得item_num_1等因为它在一个数组中。
请帮帮我。感谢
<?php
if(is_array($_SESSION['cart'])){
echo '';
$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=$_SESSION['cart'][$i]['qty'];
$pname=get_product_name($pid);
$price=get_price($pid);
if($q==0) {
echo "";
}
?>
<h2><big style="color:green"> <?php echo $i+1?></h2> </big><br>
<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr" target="paypal">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1">
<input type="hidden" name="business" value="merchant@aloha.com ">
<input type="hidden" name="currency_code" value="PHP">
<input type="hidden" name="item_name" value="<?php echo $pname?>" />
<input type="hidden" name="amount" value="<?php echo $price?>" />
<input type="hidden" name="return" value="">
<input type="image" src="images/paypal-but.png" border="0" name="submit" width="150" height="30">
<?php
}
}
?>