gudn tach!
ich hab's nur zur haelfte verstanden, aber vielleicht genuegt's ja:
<?php
$no_tables = ceil($_POST['rounds']/3); // anzahl an tabellen
$last_table = $_POST['rounds']%3; // anzahl an spalten in letzter tabellen
$input .= '';
for($tab=1; $tab<=$no_tables; ++$tab){
$input .= '<table><tr>';
$no_cells = ($tab==$no_tables && $last_table)? $last_table : 3;
for($cell=1; $cell<=$no_cells; ++$cell)
$input .= '"<th></th><th>Runde '.$tab+cell:.'</th>';
$input .= '</tr></table>';
}
?>
(ungetestet)
wenn ich mich nicht vertan habe, liefert das bei n runden n/3 tabellen mit 3 doppelspalten und falls (n mod 3>0) gilt noch eine zusaetzliche tabelle fuer mit den restlichen n mod 3 doppelspalten.
wolltest du das?
prost
seth