Ich will ja nicht so sein. Ist schnell geschrieben, musst schauen ob es klappt. Sollte aber i-wie so.

Musst manches noch anpassen, da ich Bootstrap 3.0 benutze, anstatt <table class="table table-bordered"> nur <table> etc.
PHP Code:
<?PHP
include('include/config.php')
?>
In der config.php erstellt du nun eine Datenbank-Verbindung her.
PHP Code:
<table class="table table-bordered">
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<?PHP
$Qry = mysql_query("SELECT * FROM nickname ORDER BY rank DESC LIMIT 30");
while ($Row = mysql_fetch_object($Qry))
{
?>
<tr>
<td><?PHP echo $Row->rank; ?></a></td>
<td><?PHP echo $Row->nickname; ?></td>
</tr>
</tbody>
</table>