我想实现一个简单的链接,点击后,从篮子中删除该项目。
我该怎么做?
<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>
答案 0 :(得分:1)
您可以将链接href指向脚本,并通过查询字符串传入项目的ID。像这样的东西。
<a href="delete_item.php?id=1"></a>
然后在该脚本中进行任何必要的验证检查,删除该项目,然后重新显示购物车。