使用PHP $ _Session和NO SQL创建单页购物车

时间:2017-02-01 06:55:34

标签: php html session shopping-cart cart

我正在学习一些PHP,我正在尝试创建一个多页面的购物车。

我已阅读并可以看到SQL基础系统的好处,但我想首先学习基础知识。在这样做的过程中,我创建了一个包含相关数组中产品的一体化页面,以及一个提交给自身的表单。

我想要实现的目标是:

  • 产品只能购买一次(购买按钮替换为删除按钮)
  • 该项目及其费用已添加到下方的购物车中
  • 用户可以将其从购物车或商品列表中删除
  • 总费用应根据需要更新。
  • “结帐”按钮将提交项目名称和费用
  • 表单发布到自身,不需要任何SQL

我目前的问题是:

  • 我一次不能购买多件商品,即购物车只包含最后购买的商品
  • 我无法“检查”是否已购买商品,如果是,请将“购买”替换为“删除”
  • 我无法在购物车中显示商品详情
  • 结帐按钮不会将任何详细信息传递给我的测试

同样,我还没有找到一个SQL解决方案,只是使用$_SESSION$_POST的纯PHP,并希望使用按钮代替<a href add?>类型的链接。

感谢您提前阅读冗长的代码:

<?php
session_start ();

$items = array (
        'A123' => array (
                'name' => 'Item1',
                'desc' => 'Item 1 description...',
                'price' => 1000 
        ),
        'B456' => array (
                'name' => 'Item40',
                'desc' => 'Item40 description...',
                'price' => 2500 
        ),
        'Z999' => array (
                'name' => 'Item999',
                'desc' => 'Item999 description...',
                'price' => 9999 
        ) 
);

if (! isset ( $_SESSION ['cart'] )) {
    $_SESSION ['cart'] = array ();
}

// Add
if (isset ( $_POST ["buy"] )) {
    $_SESSION ['cart'] = $_POST;
} 

// Delete Item
else if (isset ( $_POST ['delete'] )) { // a remove button has been clicked
    unset ( $_POST ['delete'] ); //
} 

// Empty Cart
else if (isset ( $_POST ["delete"] )) { // remove item from cart
    unset ( $_SESSION ['cart'] );
}

?>
<form action='<?php echo $_SERVER['PHP_SELF']; ?>' method='post'>
    <?php
        foreach ( $items as $ino => $item ) {
            $title = $item ['name'];
            $desc = $item ['desc'];
            $price = $item ['price'];

            echo " <p>$title</p>";
            echo " <p>$desc</p>";
            echo "<p>\$$price</p>";

            if ($_SESSION ['cart'] == $ino) {
                echo '<img src="carticon.png">';
                echo "<p><button type='submit' name='delete' value='$ino'>Remove</button></p>";
            } else {
                echo "<button type='submit' name='buy' value='$ino'>Buy</button> ";
            }
        }
    ?>
</form>

<?php
if (isset ( $_SESSION ["cart"] )) {
    ?>

<form action='(omitted link)'
target='_blank' method='post'
enctype='application/x-www-form-urlencoded'>
<table>
    <tr>
        <th>Product</th>
        <th>Price</th>
        <th>Action</th>
    </tr>
    <?php

    $total = 0;
    foreach ( $_SESSION ["cart"] as $i ) {
        ?>
    <tr>
        <td>
            <?php echo($_SESSION["cart"]); ?> <!--Item name-->
        </td>
        <td>price<?php echo($_SESSION["price"][$i] ); ?>
            <!--Item cost-->
        </td>
        <td><button type='submit' name='delete' value='$ino'>Remove</button>
            </p></td>
    </tr>
    <?php
        $total = + $_SESSION ["amounts"] [$i];
    }
    $_SESSION ["total"] = $total;
    ?>
    <tr>
        <td colspan="2">Total: $<?php echo($total); ?></td>
        <td><input type='submit' value='Checkout' /></td>
    </tr>
    <tr>
        <td><button type='submit' name='clear'>Clear cart</button></td>
    </tr>
</table>
</form>
<?php  } ?>

1 个答案:

答案 0 :(得分:3)

您的脚本中需要修复一些内容,因此我会将它们分解为各个部分。

还有许多安全错误检查也应该用代码完成,但作为纯粹的学习练习,我绕过了这些因素。

定义购物车

您将购物车定义为数组:

if (! isset ( $_SESSION ['cart'] )) {
    $_SESSION ['cart'] = array ();
}

但是,当您将商品添加到购物车时,您替换购物车:

// Add
if (isset ( $_POST ["buy"] )) {
    $_SESSION ['cart'] = $_POST; // 
} 

项目添加到购物车,您应该使用$cart[] = $_POST,但还有其他事项需要考虑。

添加到购物车

当您只需要产品ID时,$cart[] = $_POST会将完整的$_POST数据添加到购物车。正确的方法是:

// Add
if (isset ( $_POST ["buy"] )) {
    // Check the item is not already in the cart
    if (!in_array($_POST ["buy"], $_SESSION['cart'])) {
        // Add new item to cart
        $_SESSION ['cart'][] = $_POST["buy"];
    }
}

这将导致购物车存储多个值。例如,print_r($_SESSION['cart'])可能会显示:

array (
    0 => 'A123',
    1 => 'B456'
);

此数组中的每个项目都是已添加到购物车的商品。

从购物车中删除商品

现在$_SESSION['cart']的结构已更改,“从购物车中删除”操作也需要更新。使用little snippet of code,我们可以检查数组中是否存在该值,找到其密钥并将其删除。

// Delete Item
else if (isset ( $_POST ['delete'] )) { // a remove button has been clicked
    // Remove the item from the cart
    if (false !== $key = array_search($_POST['delete'], $_SESSION['cart'])) {
        unset($_SESSION['cart'][$key]);
    }
}

检查商品是否在购物车中

为了支持新的数组结构,需要对代码进行进一步的更改。您可以使用in_array检查您的产品是否包含在购物车阵列中。

<?php
    foreach ( $items as $ino => $item ) {
        // ... snipped for brevity

        // Check if an item is in the cart by checking for the existence of its ID:
        if (in_array($ino, $_SESSION['cart'])) { // The $ino would be 'a123' for your first product
            echo "<p><button type='submit' name='delete' value='$ino'>Remove</button></p>";
        } else {
            echo "<button type='submit' name='buy' value='$ino'>Buy</button> ";
        }
    }
?>

简化您的代码

在上面的代码中,我删除了一些代码。您正在执行以下操作:

$title = $item ['name'];
$desc = $item ['desc'];
$price = $item ['price'];

echo " <p>$title</p>";
echo " <p>$desc</p>";
echo "<p>\$$price</p>";

这可以简化为:

echo "<p>$item['name']</p>";
echo "<p>$item['desc']</p>";
echo "<p>\$$item['price']</p>";

而不是最后一行中的双$$,我个人会使用:

echo '<p>$' . number_format($item['name']) . '</p>';

这使您可以更轻松地格式化数字的显示。或者,您可以使用money_format

显示购物车

此代码存在一些问题。

  1. 您正试图echo($_SESSION['cart'])无效。你不能echo数组
  2. 尝试使用foreach ($_SESSION ["cart"] as $i)
  3. 显示值时,您错误地使用了<?php echo($_SESSION["price"][$i] ); ?>
  4. 您使用$total
  5. 的代码变得复杂
  6. 由于投放混合
  7. 的随机</p>,HTML无效

    显示此信息的正确方法是:

    <?php
    // Set a default total
    $total = 0;
    foreach ( $_SESSION['cart'] as $ino ) {
        ?>
    <tr>
        <td>
            Name: <?php echo $items[$ino]['name']; ?>
        </td>
        <td>
            Price: <?php echo $items[$ino]["price"]; ?>
        </td>
        <td>
            <button type='submit' name='delete' value='<?php echo $ino; ?>'>Remove</button>
        </td>
    </tr>
    <?php
        $total += $items[$ino]['price'];
    } // end foreach
    ?>
    
    Total: $<?php echo $total; ?>