-2

我在一个网站上设置了一个购物车,它使用一个名为 cart.php 的文件来完成所有工作。“添加”功能完美运行,我也可以清空购物车,但不能删除单个项目

删除链接如下所示:

<a href='cart.php?action=delete&id=$cartId'>delete</a> 

这会创建一个类似于此的链接:cart.php?action=delete&id=1

文件 cart.php 在这里:

<?php
require_once('Connections/ships.php');
// Include functions
require_once('inc/functions.inc.php');
// Start the session
session_start();
// Process actions
$cart = $_SESSION['cart'];
$action = $_GET['action'];

$items = explode(',',$cart);


    if (count($items) > 5) 
    {
    header("Location: shipinfo_full.php") ;
    }
    else 
    {
    switch ($action) 
        {
        case 'add':
        if ($cart) 
            {
            $cart .= ','.$_GET['ship_id'];
            } 
            else 
            {
            $cart = $_GET['ship_id'];
            }
            header("Location: info_added.php?ship_id=" .  $_GET['ship_id']) ;
            break;
            case 'delete':
            if ($cart) 
            {
            $items = explode(',',$cart);
            $newcart = '';
            foreach ($items as $item) 
                {
                if ($_GET['ship_id'] != $item) 
                    {
                    if ($newcart != '') 
                        {
                        $newcart .= ','.$item;
                        } 
                        else 
                        {
                        $newcart = $item;
                        }
                    }
                }
                $cart = $newcart;

            }
            header("Location: info.php?ship_id=" .  $_GET['ship_id']) ;
            break;
            $cart = $newcart;
            break;
        }
        $_SESSION['cart'] = $cart;

    }
?>

有什么想法可以删除单个项目吗?

4

2 回答 2

0

您可以通过将项目存储在会话内的数组中来以更好的方式编写它,如下所示

$_SESSION['cart'] = array(); // cart is initially empty

现在将商品添加到购物车

$_SESSION['cart'][] = array('name' => 'some name', 'price' => 100);

从购物车中删除商品

unset($_SESSION['cart'][22]); // assuming that 22 is the item ID

列出项目

$cart = $_SESSION['cart'];
forearch($cart as $item){
    echo $item['name']; }
于 2013-07-27T20:55:40.707 回答
0

看一下这个:

case 'delete':
    if ($cart) 
    {
        $items = explode(',',$cart);
        $newcart = array();
        foreach ($items as $item) 
        {
            if ($_GET['ship_id'] != $item) 
            {
                $newcart[] = $item;

            }
        }
        $_SESSION['cart'] = implode(',', $newcart);

    }
    header("Location: info.php?ship_id=" .  $_GET['ship_id']) ;
break;

它将newcart用除$_GET['ship_id']. 还有一件事,在重定向之前填充会话。

于 2013-07-27T21:17:52.557 回答