Is it possible to use php variable as a part of an array name. like this my arrays are Fday1, Fday2....but i cant go with the foreach keys beacause there are different counts of values for each array
$FdayArray = "Fday".$FdayKey;
array_push($FdayArray, $forecast);
the FdayKey would be a number between 1-9 How do I do this correctly?