i have values stored in an array with key
the year month and day are as separate variables, how can i print its content out. I tried all belowCode:$array['total']['2001-11-09'];
none work.Code:$temp = $year."-".$month."-".$day;
echo $array['total'][$temp];
echo $array['total'][."'".$temp."'"];

