1
How I can put the results in every different div. Need to display the image searching from a directory and a link that directs to a particular page.
<?php
$servidor = "localhost";
$usuario = "admin";
$senha = "";
$dbname = "uaicheibd";
//Criar a conexao
$conn = mysqli_connect($servidor, $usuario, $senha, $dbname);
$pesquisar = $_POST['pesquisar'];
$result_clientes = "SELECT * FROM pesquisaclientes WHERE palavras_chave LIKE '%$pesquisar%' LIMIT 5";
$resultado_clientes = mysqli_query($conn, $result_clientes);
echo '<div class="resultados">';
while($rows_clientes = mysqli_fetch_array($resultado_clientes)){
echo "Cliente: ".$rows_clientes['nome']."<br>";
echo "Bairro: ".$rows_clientes['bairro']."<br>";
echo "Categoria: ".$rows_clientes['categoria']."<br>";
echo "Subcategoria: ".$rows_clientes['subcategoria']."<br>";
echo "Link: ".$rows_clientes['link_cliente']."<br>";
echo "Logo: ".$rows_clientes['logo']."<br>";
}
echo '</div>';
?>
It’s not enough to do the
echo
of the div inside herwhile
? If not, then I don’t understand the doubt.– Andre