1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
|
<?php
$count = 1;
while($count < 4) {
echo "<tr>
<td>$count.", ";
$count++;</td>";} ?>
<?php include('db.php');
$dateiname = "erfolge.php";
$sql = "SELECT * FROM `user` Order by Ranking DESC" or die("$sql<hr />" .mysql_error());
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result))
{ $name= "$row[Vorname]";
echo"<td>$name</td>
<td>".$row[Ranking]."</td>
</tr>
<tr>";} ?>
|