F
fightingfalcon
Code:
<?php
include ("config.php");
$res=mysql_query("SELECT * FROM tracker ORDER by hits DESC LIMIT 10");
echo '<table border=\"1\">
'."\n";
while ($row=mysql_fetch_assoc($res)) {
echo ' <tr>
<td><a href="http://www.fightingfalcon.net/V3/go.php?id='.$row['id'].'" target="_blank">'.$row['name'].'</a> (Hits: '.$row['hits'].')</td>
</tr>'."\n";
}
echo '</table>';
?>
also jetzt gibt er mir die seiten aus geordnet nach den klicks und max. 10.
http://www.fightingfalcon.net/V3/test.php
aber wie geht das dass vorher noch das Ranking steht?
also
1. Seitenname (Hits: 7)
?
MfG