If i have a foreach.
$arr = ('one','two','three','four');
foreach($arr as $val){
//query
}
and a column called tmp in table. There is possible save the exactly moment of insertion ?
With timestamp ,i got for all array elements same time (2011-10-26 18:56:31) – equal for all.
I think there is possible detect that the element one is inserted before the element two and so on, correct ?
thanks
If you are doing 4 separate queries then you could use PHPs microtime() and store that in the database.