Jump to content
Fórum Script Brasil
  • 0

Consulta sql com erro...


SrMaster

Question

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 1377

1377 é 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 } ?>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...