The code I have written pulls in 3 rows from the database and at present puts the values into 1 array. Each row contains 12 values. Is there any way to place them into individual arrays each time it goes through the loop, creating 3 different arrays in total?
The code I am using is:-
$query=mysql_query("SELECT *FROM table1 WHERE TABLE1.COLUMNID=$value")
while($row=mysql_fetch_row($query){ some other code...}
Bookmarks