Guest Marcos Silva Posted January 3, 2005 Report Share Posted January 3, 2005 Pessoal, eu fiz uma query da seguinte forma:$query = mysql_query ("select sum(quantidade) from vendas where produto = '$produto'");$quantidade = mysql_result($query);echo $quantidade;e dá erro, alguém pod me dizer ond eu estou errando ??T+ pessoal!! Quote Link to comment Share on other sites More sharing options...
0 kurole Posted January 3, 2005 Report Share Posted January 3, 2005 Tenta$quantidade = mysql_num_rows($query);$$$ KUROLE $$$$ Quote Link to comment Share on other sites More sharing options...
0 Guest Marcos Silva Posted January 3, 2005 Report Share Posted January 3, 2005 Aee kurole, c eu fizer isso, ele apenas vai me apresentar o número 1, q é o número de linhas q vai c gerado, e eu preciso somar a quantidade do produto q foi vendido..Então dessa forma n vai funcionar, mesmo assim valeu a ajuda!! Quote Link to comment Share on other sites More sharing options...
0 Error404 Posted January 3, 2005 Report Share Posted January 3, 2005 Dá um echo na mysql_error() depois de executar a query e diz pra gente o que retornou Quote Link to comment Share on other sites More sharing options...
0 Fabyo Posted January 3, 2005 Report Share Posted January 3, 2005 $query = mysql_query ("select sum(quantidade) as total from vendas where produto = '$produto'");$total = mysql_result($query, 0, "total"); Quote Link to comment Share on other sites More sharing options...
0 Guest Marcos Silva Posted January 3, 2005 Report Share Posted January 3, 2005 Aee fabyo, valews cara, funciono direitinho!!! Quote Link to comment Share on other sites More sharing options...
Question
Guest Marcos Silva
Pessoal, eu fiz uma query da seguinte forma:
$query = mysql_query ("select sum(quantidade) from vendas where produto = '$produto'");
$quantidade = mysql_result($query);
echo $quantidade;
e dá erro, alguém pod me dizer ond eu estou errando ??
T+ pessoal!!
Link to comment
Share on other sites
5 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.