Heya我得到這個錯誤信息。我一直在尋找,但我不知道如何解決它?我是初學者,所以我真的很困惑。在此先感謝PHP未定義索引
注意:未定義指數:車在/nas/students/j/j39-green/unix/public_html/ISD5/inc/functions.inc.php第3行
你在沒有任何項目您的購物車
<?php
function writeShoppingCart() {
$cart = $_SESSION['cart'];
if (!$cart) {
return '<p>You have no items in your shopping cart</p>';
} else {
// Parse the cart session variable
$items = explode(',',$cart);
$s = (count($items) > 1) ? 's':'';
return '<p>You have <a href="cart.php">'.count($items).' item'.$s.' in your shopping cart</a></p>';
}
}
錯誤是在函數..Inc.php不是你的代碼 – 2012-03-14 20:26:15