rodrigoagostin Postado Maio 23, 2011 Denunciar Share Postado Maio 23, 2011 Estou com um probleminha para exibir os resultados, quando faço a busca ele não mostra os resultados, mas mostra corretamente o número de registros.arquivo: class.search.php<? class conexao { var $hostdb = "localhost"; var $userdb = "root"; var $passdb = ""; var $namedb = "pcworld"; function conexao() { $conexao = mysql_connect($this->hostdb,$this->userdb,$this->passdb); mysql_select_db($this->namedb,$conexao); } } class busca extends conexao { var $k; var $tabela = "tb_cli_cliente"; var $coluna = "cli_nome"; var $sql; var $total; function busca($palavra) { $this->k = $palavra; } function cCon() { $conexao = new conexao; } function pesquisa(){ $this->cCon(); $this->sql = mysql_query("SELECT * FROM $this->tabela WHERE $this->coluna LIKE '%$this->k%'") or die(mysql_error()); } function totalResultados() { $this->cCon(); $this->total = mysql_num_rows($this->sql); } function imprimeResultados(){ $this->cCon(); echo "Resultados encontrados: " . $this->total; echo "<br><br>"; while($resultados = mysql_fetch_array($this->sql)) { $novo = "<strong><span style=\"color: #FF0000;\">" . $this->k . "</span></strong>"; if(eregi($this->k,$resultados['resposta'])){ $resultados['resposta'] = str_replace($this->k,$novo,$resultados['resposta']); } echo $resultados['resposta']; echo "<br>-------------------------------------------------------------<br>"; } } } ?> arquivo: search.php <?php include("class.busca.php"); if($_GET['acao'] == "buscar") { $busca = new busca($_POST['palavra']); $busca->pesquisa(); $busca->totalResultados(); $busca->imprimeResultados(); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...ransitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Busca</title> </head> <body> <form id="form1" name="form1" method="post" action="?acao=buscar"> <input name="palavra" type="text" id="palavra" /> <input type="submit" name="Submit" value="Submit" /> </form> </body> </html> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Romero Dias Postado Maio 23, 2011 Denunciar Share Postado Maio 23, 2011 Rodrigo,Aqui nesse trecho, é executado os três metodos<?php include("class.busca.php"); if($_GET['acao'] == "buscar") { $busca = new busca($_POST['palavra']); $busca->pesquisa(); $busca->totalResultados(); $busca->imprimeResultados(); } ?> O método pesquisa(); já faz a conexão com o banco de dados. Os demais métodos não precisão executar $this->cCon(); Olha se funciona assim: function totalResultados() { $this->total = mysql_num_rows($this->sql); } function imprimeResultados(){ echo "Resultados encontrados: " . $this->total; echo "<br><br>"; while($resultados = mysql_fetch_array($this->sql)) { $novo = "<strong><span style=\"color: #FF0000;\">" . $this->k . "</span></strong>"; if(eregi($this->k,$resultados['resposta'])){ $resultados['resposta'] = str_replace($this->k,$novo,$resultados['resposta']); } echo $resultados['resposta']; echo "<br>-------------------------------------------------------------<br>"; } } } Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
rodrigoagostin
Estou com um probleminha para exibir os resultados, quando faço a busca ele não mostra os resultados, mas mostra corretamente o número de registros.
arquivo: class.search.php
arquivo: search.phpLink para o comentário
Compartilhar em outros sites
1 resposta 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.