sql >> Base de Datos >  >> RDS >> Mysql

PHP MySQL:agregar una fila en medio de un bucle

Por supuesto que es posible. Sin embargo, no proporcionaste tu código, así que te daré un pseudocódigo.

writeheader();
$team = $data[0]['team'];
$count = 0;
foreach($data as $row){
 $count += 1;
 //if the current row's team is different than previous than add seperator
 if($row['team'] != $team){
   $team = $row['team'];
   writeseperator();
   writetotal($count);
   $count = 0;
 }
 writerow();
}