-3
クリックすると、アイテムをバスケットから削除する簡単なリンクを実装したいと思います。バスケットからアイテムを削除する
どうすればいいですか?
<tr>
<th>Product</th>
<th>Description</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
と
$paypalBasket[] = array($product['common_name'], $item['prod_type'], $product['price'], $item['quantity'], number_format($line_cost, 2));
?>
<tr>
<td><?=$product['common_name'];?></td>
<td><?=$item['prod_type'];?></td>
<td><?=$product['price'];?></td>
<td><input type='text' name='quantity[]' value='<?=$item['quantity'];?>' size='2' /></td>
<td>£<?=number_format($line_cost, 2);?></td>
</tr>
英語ではショッピングカート*と呼ばれています。 –
バスケットはカッターです。 –
FYI、英語で、注意深く読んでください - あなたが実際に私が言ったことを見れば、あなたはショッピングカート全体のプロセスを実行する方法を尋ねなかったかも知れませんが、特定の部分、 。 – user1227124