1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| $listeSFamille = getListeSFamille($famille, $saison);
echo '<table cellpadding="10"><tr>';
echo '<td rowspan="'.count($listeSFamille).'">Famille n° '.$famille.'</td>';
$compteur = 1;
foreach($listeSFamille as $sfamille){
echo '<td>'.afficheLibelle().'</td>';
echo '<td>'.afficheRes($saison).'</td>';
echo '<td>'.afficheRes($saisonAnterieur).'</td>';
if($compteur==count($listeSFamille)){
echo '</tr>';
$compteur = 1;
} else {
echo '</tr><tr>';
$compteur++;
}
}
echo '<tr><td colspan="2">Total famille</td>';
echo '<td>'.afficheLibelle().'</td>';
echo '<td>'afficheTotal($saison).'</td>';
echo '<td>'.afficheTotal($saisonAnterieur).'</td></tr></table>'; |