Lúdio Postado Abril 22, 2011 Denunciar Share Postado Abril 22, 2011 Bem, estou com um problema nesse código:<?phpinclude("conecta_db.php"); $q_total = "SELECT * FROM div_festa WHERE div = '4' or div = '1'";$mysql_total = mysql_query($q_total);$total = mysql_num_rows($mysql_total);$q_ultimo = "SELECT * FROM div_festa WHERE div = '4' or div = '1' order by id desc limit 1";$mysql_ultimo = mysql_query($q_ultimo);$ultimo = mysql_num_rows($mysql_ultimo);$q_primeiro = "SELECT * FROM div_festa WHERE div = '4' or div = '1' order by id asc limit 1";$mysql_primeiro = mysql_query($q_primeiro);$primeiro = mysql_num_rows($mysql_primeiro);$intervalo = $primeiro + $total;$limite = $intervalo - 4;$match = rand(1,$limite); $dados_festa = "SELECT * FROM div_festa WHERE div = '4' or div = '1' limit $match,3"; $query_festa = mysql_query($dados_festa); while($arr = mysql_fetch_array($query_festa)) { $festa_id = $arr["id"]; $festa_dia = $arr["dia"]; $festa_mes = $arr["mes"]; $festa_nome = $arr["nome"]; $festa_intro = $arr["intro"]; ?>Está me retornando o seguinte erro: Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 94Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 98Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 102Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 114Peço ajuda de vocês. pois sou novato na área de php xD Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 roberx Postado Março 25, 2015 Denunciar Share Postado Março 25, 2015 Olá alguém pode me ajudar com este erro? Não entendo muito de PHP. Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/comoganh/public_html/escritorio/pages/payment.php on line 174 Código: <tr> <td width="30%"><strong><?=$indicadorNOME?></strong> <br /> Login: <?=$pagamentos['indicador']?></td> <? if(($pagamentos['status'] == "pago") or ($pagamentos['status'] == "pendente")) {?> <td><strong>Status:</strong> <?=$pagamentostatus?><br /> <? $ctpi = mysql_query("SELECT * FROM denuncia WHERE pay_id='{$pagamentos['id']}'"); $count = mysql_num_rows($ctpi); if($count < 1) { $calc = time() - $pagamentodata; if ($calc > 172800) { echo "<font color=darkred>48 Horas se passaram</font> <br / > <form method=post><input type=hidden name=pay_id value='{$pagamentos['id']}'> <input type=submit name=pp value='Denunciar' class='sbm'></form>"; } }?> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Marcelo_2 Postado Março 25, 2015 Denunciar Share Postado Março 25, 2015 funções mysql* estão obsoletas. use PDO: http://www.devmedia.com.br/introducao-ao-php-pdo/24973http://www.rafaelwendel.com/2011/12/tutorial-pdo-php-data-object/ Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Lúdio
Bem, estou com um problema nesse código:
Está me retornando o seguinte erro:
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 94
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 98
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 102
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/ludioao/public_html/murtinhofest/inc_index.php on line 114
Peço ajuda de vocês. pois sou novato na área de php xD
Link para o comentário
Compartilhar em outros sites
27 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.