Olá,
Aqui se encontra o que deseja
Ranking Kill
Mini Tutorial
_server
htdocs
coloque os arquivos baixados acima.
abra o arquivo
Config.php
Que terá este codigo
Código:
<?php
$localhost = "localhost"; // Coloque aqui o endereço do banco, geralmente é localhost.
$usuario = "root"; // Coloque aqui seu usuário do mysql.
$senha = "ascent"; // Coloque a senha do banco de dado.
$database = "characters"; // Coloque aqui seu banco characters.
$top = "25"; // Aqui mostrará quantos players irão mostrar no top.
?>
Configure desta forma, ou de forma que ja modificou a sua DB.
Resulta?
Caso não resultar tente este codigo
Código:
<html>
<head>
<title>Ranking Kill - 100</title>
<style>
body
{
color: ORANGE;
font: 10pt Lucida Fax, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
margin: 0px 0px 0px 0px;
padding: 0px;
text-align: center;
}
a:link
{
color: orange;
text-decoration: none;
}
a:visited
{
color: orange;
text-decoration: none;
}
a:hover, a:active
{
color: yellow;
text-decoration: none;
}
</style>
</head>
<body bgcolor="black">
<?php
include ("config.php");
$connect = mysql_connect($host,$user,$pass) OR DIE("'Can't connect with $host");
mysql_select_db($characters,$connect) or die(mysql_error());
$result = mysql_query("SELECT * FROM `characters` ORDER BY `totalKills` DESC LIMIT 0 , 100 ");
?>
<font color="black">
<table align=center cellpadding="0" cellspacing="0" border="0" width=100%>
<thead>
<td width="4%"><center><font color="white">Nº</font></center></td>
<td width="16%"><center><font color="white">Nome do Personagem</font></center></td>
<td width="4%"><center><font color="white">Kills</font></center></td><td width="4%"><center><font color="white">Level</font></center></td>
</thead>
<tbody>
<?php
while($rows = mysql_fetch_object($result))
{
$i++;
$name = $rows->name;
$Total_Kills = $rows->totalKills;
$level = $rows->level;
echo "
<tr>
<td><center>",$i,"</center></td>
<td><b>",$name,"</b></td>
<td><center>",$Total_Kills,"</center></td>
<td><center>",$level,"</center></td>
</tr>";
}
?>
</body>
Cria um bloco de notas e salve-o como rank.php
Última edição por Føx em Sex 20 Abr 2012 - 8:27, editado 1 vez(es)