Jump to content

meter numeros num ranking em php


ah.pinote

Recommended Posts

$battleQ = mysql_query("SELECT id, nome, moedas FROM usuarios ORDER BY moedas DESC");
echo "<table table border=\"0\"  cellspacing=\"1\" cellpadding=\"0\" width=\"100%\">";
	echo "<tr>";
		echo "<th>Rank</th>";
		echo "<th>Nome</th>";
                        echo "<th>Moedas</th>";
	echo "</tr>";

while ($battle = mysql_fetch_array($battleQ)){
	echo "<tr>";
		echo "<td>posicao\n</td>";
		echo "<td><center>$battle[nome]\n</center></td>";
		echo "<td>$battle[moedas]\n</td>";
	echo "</tr>";	
	}
echo "</table>";

Pronto tenho isto.

O que eu quero fazer é meter os numero da posição. Ou seja pelo exemplo:

Posição    Nome  Moedas

etc

tá mais claro?

Link to comment
Share on other sites

Antes do while, podes inicializar uma variável a 1, sejam $i.

Na tua linha, basta imprimir e incrementar o $i, ou seja:

echo $i++;

ou se preferires em dois passos:

$i++;
echo $i;

mas neste tens de inicializar a 0.

Nick antigo: softclean | Tens um projeto? | Wiki P@P

Ajuda a comunidade! Se encontrares algo de errado, usa a opção "Denunciar" por baixo de cada post.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.