i have problems inserting multiple records in symfony what happens is the 2nd up to the last records just updates the first record
ex:
$n = new Object();
// start loop until i = 5
$n->count = $i;
$n->text = 'a'.$i;
$n->save();
i++;
//end loop
after this loop theres only 1 record... count = 5, text= a5;
is there a way to clear $n so that when i insert a new record again it will not update the first?