php session hatası

0 Cevap session

Ben bir alışveriş sepeti yapmak için çalışıyor ve web bir kod var idi ..

<?php
session_start();
require_once 'class/Item.php';
$product_id = $_REQUEST['i_id'];
$action = $_REQUEST['action']; 

$item= new Item();

if($product_id && !$item->productExists($product_id)) {
    die("Error. Product Doesn't Exist");
}

switch($action) { 
    case "add":
        $_SESSION['cart'][$product_id]++; 
    break;

    case "remove":
        $_SESSION['cart'][$product_id]--; 
        if($_SESSION['cart'][$product_id] == 0) unset($_SESSION['cart'][$product_id]); 
    break;

    case "empty":
        unset($_SESSION['cart']); 
    break;
}
?>

ancak cart ilk öğe ekleyerek ProgID hatasını gider. Bunu nasıl düzeltebilirsiniz.

Hata:

Notice: Undefined index: C Sepeti: \ wamp \ www \ web \ store_esp \ addtocart.php hat 16 üzerinde

Notice: Undefined index: 2 C: \ wamp \ www \ web \ store_esp \ addtocart.php hat 16 üzerinde

0 Cevap