Hi Guys... I need to store the following information, but am not sure how's best to do it. Here's an example...
ProcessID = 1.01
Total Cost = 333
Total Staff = 23
*Total Time = 32
Process = 1.02
Total Cost = 34556
Total Staff = 12
*Total Time = 112
So basically the processID is the identifier and UNDER that I need to store the values of total cost, staff and time. I thought of an array like
array(array(2.01(array(totalcost,totalstaff,totaltime)))
would that work?
My next question would then be how do I actually populate this array... would I use array_push as I am looping through my results??
thanks for any advice...
🙂