how to search more than one column in php

-1

I'm doing a searcher for a client site, I've done the form code and the search code, and it showed the result.

My table and so:

NAME DATE OF BIRTH.ITY.DATA OF DEATH.QUADRA.JAZIGO.GAVETA

In the case at the moment the result is just the name, more precise than it is of the other columns also, when I put the name of the person, the other data of the line

php search code:

<?php
    $servidor = "localhost";
    $usuario = "root";
    $senha = " SENHA OCULTA";
    $database = "cemiterio";
    //Criar a conexao
    $conn = mysqli_connect($servidor, $usuario, $senha, $database);

    $pesquisar = $_POST['pesquisar'];
    $sql = "SELECT * FROM 'jazigos' WHERE 'NOME' LIKE '%{$pesquisar}%' LIMIT 25";
    $resultado_cemiterio = mysqli_query ($conn,$sql);

     while($rows_sql = mysqli_fetch_array($resultado_cemiterio, MYSQLI_ASSOC)){
        echo "Resultado da Pesquisa:". $rows_sql["NOME"]  ."<br>";


    }
?>
    
asked by anonymous 15.11.2018 / 14:46

1 answer

0

Add the other columns in your while as well ... you just specified the name column, so only the name column is appearing:

  while($rows_sql = mysqli_fetch_array($resultado_cemiterio, MYSQLI_ASSOC)){
        echo "Resultado da Pesquisa:". $rows_sql["NOME"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["DATA DE NASCIMENTO"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["IDADE"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["DATA DE FALECIMENTO"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["QUADRA"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["JAZIGO"]  ."<br>";
        echo "Resultado da Pesquisa:". $rows_sql["GAVETA"]  ."<br>";
        echo "------------------------------------------------<br>";

    }
    
15.11.2018 / 17:46