09.09.2013, 15:26
Passa tudo pra MySQL. Vai ser atй melhor pra vocк que pelo jeito deseja integrar aplicaзхes web com o server. Caso nгo queira passar tudo pra MySQL, existe um ranking em INI postado no fуrum, basta procurar
Criei esse ranking simples para vocк ver como se faz.
Criei esse ranking simples para vocк ver como se faz.
PHP код:
<?php
header('Content-Type: text/html; charset=utf-8');
$conn = mysql_connect("127.0.0.1", "root", "");
if ($conn) {
$db = mysql_select_db("dbname");
}
?>
<center><table width = "50%" id = "tabela-rank" cellspacing = "2" cellpadding = "2" border = "0">
<tr>
<th style="background-color:brown;">Rank</th>
<th style="background-color:brown;">Nome</th>
<th style="background-color:brown;">Level</th>
</tr>
<?php
$query = mysql_query("select nome, level from users order by level desc");
$ranking = 1;
if ($query) {
while ($obj = mysql_fetch_object($query)) {
?>
<tr>
<th style="background-color:#eee;"><?php echo $ranking++. "є"; ?></th>
<th style="background-color:#eee;"><?php echo $obj->nome; ?></th>
<th style="background-color:#eee;"><?php echo $obj->level; ?></th>
</tr>
<?php
}
} else {
echo "Nгo foi possнvel realizar a consulta.";
}
?>
</table></center>