$item
プッシュしたい配列を作成してい$_SESSION['cart']
ます。配列を作成した後item
、私は次のことを試みています。
$_SESSION['cart'][] = $item[$item_id];
参照: phpのSESSION配列でarray_pushを使用できますか?
ただし、カートセッション変数は、追加されるのではなく、上書きされ続けます。他に何か提案はありますか?
マークからの要求に応じて:
初めて実行される:
Notice: Undefined variable: _SESSION in C:\inetpub\wwwroot\domain\store\cart.php on line 5
NULL array(3) { ["title"]=> string(37) "PA State and Federal Laminated Poster" ["price"]=> string(5) "55.95" ["qty"]=> string(1) "3" }
2回目:
Notice: Undefined variable: _SESSION in C:\inetpub\wwwroot\domain\store\cart.php on line 5
NULL array(3) { ["title"]=> string(53) "PA State and Federal Laminated Poster SPANISH Edition" ["price"]=> string(5) "55.95" ["qty"]=> string(1) "1" }