我知道有很多关于这个问题的帖子。我看过很多帖子,但出于某种原因,我似乎可以找到答案!
任何帮助将不胜感激。我对 PHP 还很陌生,所以如果我说错了什么,我深表歉意。
我正在尝试使用数组创建一个基本的篮子系统。我在网上不断收到一个错误未定义的索引$_SESSION['cart'][$app_ID]++;
有趣的是它所有的功能都正确!我想解决错误,而不仅仅是关闭错误报告。
if(isset($_GET['id'])){
$app_ID = $_GET['id']; //the item id from the URL
$action = $_GET['action']; //the action from the URL
$total = 0;
if (isset($app_ID)){
switch($action) {
case "add":
$_SESSION['cart'][$app_ID]++;
break;
case "remove":
$_SESSION['cart'][$app_ID]--;
if($_SESSION['cart'][$app_ID] == 0) unset($_SESSION['cart'][$app_ID]);
break;
case "empty":
unset($_SESSION['cart']); //unset the whole cart, i.e. empty the cart.
break;
谢谢大家。