Seguinte, tipow armei um esquema aqui mais to tento muita dificuldade pra arrumar..
QUERO QUE ELE ORDENE POR PONTOS TIPOW " paquera WHERE cat "
AI ELE TA MOSTRANDO O NOME DA PESSOA E O TOTAL DE PONTOS QUE ELA TEM>>>
COMO EU ORDENO NESTE COD AI O QUE TEM MAIS PONTOS??
TIPOW QUE TEM 15 PONTOS É O 1 E TALS>>
<?php
include("conexao.php");
$conexao = @mysql_connect($host,$user,$pass);
if(!$conexao)
die("não foi possivel conectar no servidor MySQL. Erro: " . mysql_error());
mysql_select_db($db) or die("não foi possivel usar o banco de dados. Erro: " . mysql_error());
$conexao = mysql_connect("$host","$user","$pass");
$db = mysql_select_db("users");
$sql = "SELECT * FROM users order by id LIMIT 1000 ";
$resultado = mysql_query($sql)
or die ("Não foi possível realizar a consulta ao banco de dados");
while ($linha=mysql_fetch_array($resultado)) {
$id = $linha['id'];
$nome = $linha['nome'];
// contando comentarios
$cat1 = $id;
$comm = "SELECT * FROM paquera WHERE cat LIKE \"$cat1\"";
$commq = mysql_query($comm);
$ncomm = mysql_num_rows($commq);
?>
Meu id é <?echo $id?> Meu nome é: <?echo $nome?> -<? echo $ncomm; ?> <p>
<? } ?>
Question
otaviojames
Ola Amigos,,,
Seguinte, tipow armei um esquema aqui mais to tento muita dificuldade pra arrumar..
QUERO QUE ELE ORDENE POR PONTOS TIPOW " paquera WHERE cat "
AI ELE TA MOSTRANDO O NOME DA PESSOA E O TOTAL DE PONTOS QUE ELA TEM>>>
COMO EU ORDENO NESTE COD AI O QUE TEM MAIS PONTOS??
TIPOW QUE TEM 15 PONTOS É O 1 E TALS>>
valeu
Link to comment
Share on other sites
42 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.