I'm having a problem with the following code. What happens is I don't get any errors but the last part of the code where total_items is supposed by set doesn't get set. Is there a problem with my browser or with this code?
<?php
setcookie("items_tray[$total_items]", $selected_item_no);
setcookie("quantity[$total_items]", "1");
$total_items++;
setcookie("total_items",$total_items);
echo $total_items;
echo $items_tray[$total_items];
echo $quantity[$total_items];