Code: Select all
$bakery = array(
"cherry" => array("£100","2 pieces","sugar"),
"apple" => array("£200","3 pieces","sugar"),
"other" => array("£300","1 piece","sugar-free"),
);However, is it possible, and if so how...
do i assign a key to the 300 index, so it could be called by something like $bakery[other][cost]
I hope this makes sense.
Shears