I have an array like so:
$array = array(value1,value2,value3,value4,value5,value6,value7,value8,value9,value10,value11,value12);
What i need to do is insert the array value into a database
row one would have value1,value2,value3,value4
row two would have value5,value6,value7,value8
row three would have value9,value10,value11,value12
I was thinking i would need a for loop. Can anyone help on this? thanks
for($x=0; $x<$count1; $x++)
{
}