I got following existing array in my $_SESSION:
[wishList] => wishList Object
(
[contents] => Array
(
[109] => Array
(
[qty] => 1.0000
)
[89] => Array
(
[qty] => 1.0000
)
[62] => Array
(
[qty] => 1.0000
)
Now i am trying to add a new object to it like this:
echo $_SESSION['wishList']->contents = array('60' => array('qty' => '1.0000'));
So the array would look like this:
[wishList] => wishList Object
(
[contents] => Array
(
[109] => Array
(
[qty] => 1.0000
)
[89] => Array
(
[qty] => 1.0000
)
[62] => Array
(
[qty] => 1.0000
)
[60] => Array
(
[qty] => 1.0000
)
It is not working the way i try it. Where is my fault?