I am trying to populate some data into a graph. I can pull the data out in a while loop, but I need each piece of data to be split into seperate varaibles that I can then essentially echo with a different variable name.
The graph looks like...
"1" => $totala,
"2" => $totalb,
"3" => $totalc,
"4" => $totald,
"5" => $totale,
"6" => $totalf,
Where total is the data I pulled in a while() loop.
Help appreciated.
Rab