SrMaster Posted October 15, 2011 Report Share Posted October 15, 2011 Cansei de tentar arrumar, e não conseguir :@ não sei o que tá acontecendo :angry: PG: http://dangercheats.com.br/freestepzone/in...p;id=5&pg=2$query3 = mysql_query($sql3);while($linha3 = mysql_fetch_array($query3)) {$autor_id = $linha3["autor_id"];$data = $linha3["data"];$hora = $linha3["hora"];$corpo = $linha3["corpo"];$comentadorid = $_SESSION[ "user_id" ];$sql4 = "select * from `usuarios` where (`id` = $autor_id)";$query4 = mysql_query($sql4);while($linha4 = mysql_fetch_array($query4)) {$nicknoticia = $linha4["nick"];$postsnoticia = $linha4["posts"];$idadenoticia = $linha4["idade"];$sexonoticia = $linha4["sexo"];$gruponoticia = $linha4["grupo"];$fotonoticia = $linha4["foto"];}Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/senha123/public_html/freestepzone/index.php on line 13771377 é a linha que tá em negrito, o código todo é esse:<?php$_BS['PorPagina]= 3;$sql3 = "SELECT COUNT(*) AS total from comentarios_musica where musica_id = $pegarid";$query3 = mysql_query($sql3);$total = mysql_result($query3, 0, 'total');// Calcula o máximo de paginas$paginas = (($total % $_BS['PorPagina']) > 0) ? (int)($total / $_BS['PorPagina']) + 1 : ($total / $_BS['PorPagina']);if (isset($_GET['pg'])) {$pg = (int)$_GET['pg'];} else {$pg = 1;}$pg = max(min($paginas, $pg), 1);$inicio = ($pg - 1) * $_BS['PorPagina'];$sql3 = "SELECT * FROM `comentarios_musica` WHERE (`musica_id` = $pegarid) ORDER BY `data` DESC LIMIT ".$inicio.", ".$_BS['PorPagina'];$query3 = mysql_query($sql3);while($linha3 = mysql_fetch_array($query3)) {$autor_id = $linha3["autor_id"];$data = $linha3["data"];$hora = $linha3["hora"];$corpo = $linha3["corpo"];$comentadorid = $_SESSION[ "user_id" ];$sql4 = "select * from `usuarios` where (`id` = $autor_id)";$query4 = mysql_query($sql4);while($linha4 = mysql_fetch_array($query4)) {$nicknoticia = $linha4["nick"];$postsnoticia = $linha4["posts"];$idadenoticia = $linha4["idade"];$sexonoticia = $linha4["sexo"];$gruponoticia = $linha4["grupo"];$fotonoticia = $linha4["foto"];}?> <div id="estrutura-comment-pag"> <a href="index.php?pagina=membro&id=<?php echo"$autor_id"?>"><div id="comment-img-membro"><img src="<?php echo"$fotonoticia"?>" /></div></a><!--comment img membro--> <div id="content-comments-pag"> <div id="dados-comment-pag"> <a href="#redirecionaperfil"><p><?php echo"$nicknoticia"?> Diz:</p></a><!--nome do comentador diz:--> <div class="icon-date-coments-pag"><img src="imagens/icon-date-pag.png" /></div><!--icon-date-coments--> <p><?php echo"$data"?> - <?php echo"$hora"?></p> <!--Data e hora do comentário--> <h2><div id="comment-text-pag"><?php echo"$corpo"?></div></h2> <!--texto do commentário--> </div><!--dados comment pag--> </div><!--content comments pag--> </div><!--estrutura comment pag--> <?php } ?> Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted October 15, 2011 Report Share Posted October 15, 2011 Troca:$query4 = mysql_query($sql4);Por:$query4 = mysql_query($sql4)OR DIE(mysql_error());Isso vai fazer com que o MySQL informe qual o erro na consulta. Quote Link to comment Share on other sites More sharing options...
0 SrMaster Posted October 15, 2011 Author Report Share Posted October 15, 2011 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1tenso. Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted October 15, 2011 Report Share Posted October 15, 2011 Troca:$sql4 = "select * from `usuarios` where (`id` = $autor_id)";Por:$sql4 = "select * from `usuarios` where `id` = '$autor_id'";Se não funcionar dê um echo na variável $autor_id para ver o que está retornando. Quote Link to comment Share on other sites More sharing options...
Question
SrMaster
Cansei de tentar arrumar, e não conseguir :@ não sei o que tá acontecendo :angry:
PG: http://dangercheats.com.br/freestepzone/in...p;id=5&pg=2
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/senha123/public_html/freestepzone/index.php on line 1377
1377 é a linha que tá em negrito, o código todo é esse:
Link to comment
Share on other sites
3 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.