Hello Guys
___________:
I was wondering to create something new
But i stopped at a point, fetching high-scores is not working so good, but it don't sort them.
so i wish someone helps me making a script.
The script I am using is :
___________:
I was wondering to create something new
But i stopped at a point, fetching high-scores is not working so good, but it don't sort them.
so i wish someone helps me making a script.
The script I am using is :
PHP:
<?php
include 'connect.php';
$query = "SELECT level FROM `players`;";
$result = mysql_query($query, $connection);
$nexterrow = mysql_num_rows($result);
if($nexterrow) {
echo '<table cellpadding="0" cellspacing="0" class="db-table">';
sort($nexterrow);
while($row = mysql_fetch_row($result)) {
echo '<tr>';
foreach($row as $key=>$value) {
echo '<td>'.$value.'</td>';
}
echo '</tr>';
}
echo '</table><br />';
}
?>