我的网站是Career Tracker ,我想在本地机器上的网站中添加购物车,每次都会出错,所以我很累。
我使用 XAMPP 1.8.1 [PHP: 5.4.7] 我每次都收到错误通知:未定义的索引:第 4 行的 functions.inc.php 中的购物车
我厌倦了为什么我的 php veriable 未定义?$购物车
这是我的代码,我在第 4 行出现错误。
php未定义索引错误
<?php
function writeShoppingCart()
{
$cart = $_SESSION['cart'];
if (!$cart)
{
return 'My Cart (0) Items';
}
else
{
// Parse the cart session variable
$items = explode(',',$cart);
$s = (count($items) > 1) ? 's':'';
return '<a href="cart.php">'.count($items).' item'.$s.' in your cart</a></p>';
}
}
?>