Can anyone give me server files which work rank system and shop and coded in C#
<?php
function mostrarRanking1()
{
$result = mysql_query("SELECT * FROM cuentas ORDER BY honor DESC");
$nombre = "undefined";
$honor = 0;
$pos = 0;
while($rs = mysql_fetch_array($result))
{
if($rs[32] == 21)continue;
$pos += 1;
if($rs[1] != null)$nombre = $rs[1];
if($rs[33] != null)$honor = $rs[33];
echo "<tr>";
echo "$pos. ";
echo "<td class='table_ranking_center fliess10px-gelb'><b>$nombre</b></td> ";
echo "<td class='table_ranking_right'>$honor</td> ";
echo "<br>";
}
}
?>
<center>
<?php mostrarRanking1(); ?>
</center>
and azure files only 1.5 mb ? :S im so confused look at linkQuote:
thats not difficult too.
But you need to edit the names of database tables.PHP Code:<?php
function mostrarRanking1()
{
$result = mysql_query("SELECT * FROM cuentas ORDER BY honor DESC");
$nombre = "undefined";
$honor = 0;
$pos = 0;
while($rs = mysql_fetch_array($result))
{
if($rs[32] == 21)continue;
$pos += 1;
if($rs[1] != null)$nombre = $rs[1];
if($rs[33] != null)$honor = $rs[33];
echo "<tr>";
echo "$pos. ";
echo "<td class='table_ranking_center fliess10px-gelb'><b>$nombre</b></td> ";
echo "<td class='table_ranking_right'>$honor</td> ";
echo "<br>";
}
}
?>
<center>
<?php mostrarRanking1(); ?>
</center>
Copied and modified from ICON8