0

我有一组变量,我通过 . 我遇到的问题是当 Paypal 屏幕加载项目时,数量,价格部分为空。这是传递的代码片段:-(数组 cart_stock 和 cart_price 保存要传递的数据,$tmp_cart_count 保存要传递的项目总数)

<?php 
echo "<form target='PayPal' action='https://www.sandbox.paypal.com/cgi-bin/webscr' method='post'>";
echo "<input name='cmd' value='_xclick' type='hidden' />";
echo "<input name='upload' value='1' type='hidden' />";
echo "<input name='business' value='sales@danskvintage.com.au' type='hidden' />";

// other irrelevant variables are passed here //

$i=0;$count=1;
while ($i < $tmp_cart_count)
    {
    echo "<input name='custom' value='".$_SESSION['cart_stock'][$i]."' type='hidden' >";
    echo "<input name='item_name_".($count)."' value='".$_SESSION['cart_title'][$i]."' type='hidden' >";
    echo "<input name='quantity_".($count)."' value='1' type='hidden' >";            
    echo "<input name='amount_".($count)."' value='".$_SESSION['cart_price'][$i]."' type='hidden' >";
    echo "<input name='shipping_".($count)."' value='0' type='hidden' >";
    $i++;
    $count++;
    }
echo "<input type='submit' value='PayPal'>";
echo "</form>";
?>

任何帮助将不胜感激,因为它让我很难过。

4

1 回答 1

2

尝试改变

echo "<input name='cmd' value='_xclick' type='hidden' />";

进入

echo "<input name='cmd' value='_cart' type='hidden' />";

我相信这可能会有所帮助。

于 2012-10-19T14:25:24.103 回答