Teem aki no forum algum rank pvp disponibilizado para edição, se nao tiver alguem conhece uma video aula que ensina como fazer 1 ?
obrigado desde já .
obrigado desde já .
Código:
<?php
$port = "SEU PORT";
$host = "localhost";
$user = "USUÁRIO DO MYSQL";
$pass = "SENHA DO MYSQL";
$characters = "NOME DA DB DE CHARACTERS";
$auth = "auth";
$cod = 'utf8';
?>
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>