Eine php Datei im Hauptverzeichnis habe ich bereits angelegt.
Die dazugehörige html Datei befindet sich im template Verzeichnis.
Nur weiß ich leider nicht, wie ich jetzt die Tabelle im proSilver Style darstellen kann. Also dass meine Tabelle etwa so aussieht wie die Forumübersicht.
Folgenden Code habe ich bis jetzt, wie muss ich jetzt weiter vorgehen?
Code: Alles auswählen
<!-- INCLUDE overall_header.html -->
<table>
<tbody>
<tr>
<th>Tabellenplatz</th>
<th>Nickname</th>
<th>Spiele</th>
<th>Siege</th>
<th>Niederlagen</th>
<th>Runden</th>
<th>Verhältnis</th>
</tr>
<tr>
<td>1</td>
<td>Spieler 1</td>
<td>4</td>
<td>4</td>
<td>0</td>
<td>6:0</td>
<td>+6</td>
</tr>
<tr>
<td>2</td>
<td>Spieler 3</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>3:3</td>
<td>+0</td>
</tr>
<tr>
<td>3</td>
<td>Spieler 2</td>
<td>4</td>
<td>0</td>
<td>4</td>
<td>0:6</td>
<td>-6</td>
</tr>
</tbody>
</table>
<!-- INCLUDE overall_footer.html -->