Mysql
 sql >> Datenbank >  >> RDS >> Mysql

PHP MySQL - Hinzufügen einer Zeile in der Mitte einer Schleife

Natürlich ist es möglich. Sie haben Ihren Code jedoch nicht angegeben, also gebe ich Ihnen einen Pseudocode.

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();
}