
Gruß und N8,
Philipp
Code: Alles auswählen
$result = mysql_query("SELECT * FROM $table ORDER by punkte DESC, tordiff DESC", $conn);
$table = array();
$i = 0;
while($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$table[$i]['team'] = $row['team'];
[...] (andere Felder)
$i++;
}