Seite 1 von 1

Formula1 Mod - Abgegebene Tipps sortieren

Verfasst: 10.06.2007 21:30
von Dungeonwatcher
'n Abend! 8)

Was muss wo wie geändert werden, damit das Ergebnis in der Zeile "Abgegebene Tipps" nach erreichten Punkten und dann nach Alphabet sortiert angezeigt wird?

Bye/2

Verfasst: 11.06.2007 09:04
von Dr.Death
Öffne die formel.php

SUCHE:

Code: Alles auswählen

		// Find current tippers and their points
		// Get tipp data
		$sql = "SELECT * FROM " . FORMEL_TIPPS_TABLE . " 
				WHERE tipp_race = $race_id";
ERSETZE MIT:

Code: Alles auswählen

		// Find current tippers and their points
		// Get tipp data
		$sql = "SELECT * FROM " . FORMEL_TIPPS_TABLE . " 
				WHERE tipp_race = $race_id
				ORDER BY tipp_points DESC";

Verfasst: 11.06.2007 09:36
von Dungeonwatcher
Moin! 8)

THNX [ externes Bild ]

Bye/2