Come on people I need your help,
Right I've got an array, I need to break it into variables, however I dont know how many elements are going to be in the array, every instance will be different; so I can't use list().
I need to the use those variables, made from the array in another loop to calculate averages.
I cant do;
foreach($smallArray as $key=>$value){
//Do something
}
because I need the variables elsewhere in the script.
Im nearly crying,
any help appreciated.