0

我哪里错了?公司电子邮件是正确的我尝试使用商家 ID 但仍然没有乐趣.....??

<?php $items = unserialize($_SESSION['items']); ?>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="no_note" value="1">  
<input type="hidden" name="business" value="cherished4ever@hotmail.co.uk">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="return" value="http://www.cherished4ever.com/">   

<?php
$suffix = 1;
foreach($items as $item):
?>
<input type="hidden" name="item_name_<?php echo $suffix; ?>" value="<?php echo $item['name']; ?>"> 
<input type="hidden" name="amount_<?php echo $suffix; ?>" value="<?php echo      $item['price']; ?>"> 
<?php
$suffix++;
endforeach;
?>

好的,所以我现在已经开始工作了,但是我只需要在结帐页面上显示选项名称而不是设置为隐藏输出的 item_name 值的帮助:

<select name="amount" style="width:150px;font:9px;margin-top:4px">
<option value="35.00">10 x 10</option>
<option value="55.00">20 x 20</option>
<option value="75.00">30 x 30</option>
</select><br>
4

1 回答 1

1

请务必记住您session_start();在使用该$_SESSION变量的每个页面的顶部。

有关更多信息,请查看:http ://www.php.net/session_start

于 2013-03-01T23:42:37.977 回答