dtpa98038 2014-05-17 12:08
浏览 21

使用会话将项目添加到购物篮

This is a shopping basket and a user can click add to basket passing an action=add variable across and this is selected from the switch statement. However the first time you add an item it causes an error (bottom). This only occurs the first time which leads me to believe that it is because the session[cart] has not been created.

The variables are set here:

if(isset($_GET['id'])) 
{
$Item_ID = $_GET['id'];//the product id from the URL 
$action = $_GET['action'];//the action from the URL 
} 
else
{
$action = "nothing";
}




<?php

if(empty($_SESSION['User_loggedin']))
{ 
header ('Location: logon.php');
}
else
{

switch($action) { //decide what to do 

    case "add":
        $_SESSION['cart'][$Item_ID]++; //add one to the quantity of the product with id $product_id 
    break;

    case "remove":
        $_SESSION['cart'][$Item_ID]--; //remove one from the quantity of the product with id $product_id 
        if($_SESSION['cart'][$Item_ID] == 0) unset($_SESSION['cart'][$Item_ID]); //if the quantity is zero, remove it completely (using the 'unset' function) - otherwise is will show zero, then -1, -2 etc when the user keeps removing items. 
    break;

    case "empty":
        unset($_SESSION['cart']); //unset the whole cart, i.e. empty the cart. 
    break;

    case "nothing":
    break;
}

if(empty($_SESSION['cart']))
{ 
echo "You have no items in your shopping cart.";
}

Adding items is working fine however the first time I add something to an empty basket I get the error below:

Notice: Undefined index: cart in H:\STUDENT\S0190204\GGJ\Basket.php on line 57 Notice: Undefined index: 1 in H:\STUDENT\S0190204\GGJ\Basket.php on line 57
  • 写回答

2条回答 默认 最新

  • duanpo6079 2014-05-17 12:12
    关注

    That is because your $_SESSION['cart'] variable isn't initialized for the first request. Try something like below.

    if(empty($_SESSION['User_loggedin']))
    { 
    header ('Location: logon.php');
    }
    else
    {
    
       // Added this...
       if(empty($_SESSION['cart'])){
           $_SESSION['cart'] = array();
       }
    
    switch($action) { //decide what to do 
    
        case "add":
            $_SESSION['cart'][$Item_ID]++; //add one to the quantity of the product with id $product_id 
        break;
    
        case "remove":
            $_SESSION['cart'][$Item_ID]--; //remove one from the quantity of the product with id $product_id 
            if($_SESSION['cart'][$Item_ID] == 0) unset($_SESSION['cart'][$Item_ID]); //if the quantity is zero, remove it completely (using the 'unset' function) - otherwise is will show zero, then -1, -2 etc when the user keeps removing items. 
        break;
    
        case "empty":
            unset($_SESSION['cart']); //unset the whole cart, i.e. empty the cart. 
        break;
    
        case "nothing":
        break;
    }
    
    if(empty($_SESSION['cart']))
    { 
    echo "You have no items in your shopping cart.";
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答