I made this condition so that if the person searches for the name andrey will execute a require, otherwise it will not display, so any name that I put in the search field is bringing the require, so here's my code:
if ($resultados->num_rows > 0) {
while($linha = mysqli_fetch_array($resultados)) {
echo utf8_encode("<strong>Nome: </strong>" . $linha['nome'] . "</br>");
print ("<strong>Endereço: </strong>" . $linha['endereco']."</br>");
if( isset($_POST['cidade']) && $_POST['cidade'] === 'sao-gabriel-da-palha' ) {
$fromPerson = 'São Gabriel da Palha';
echo "<strong>Cidade: </strong>".$fromPerson."</br>";
}
print ("<strong>Telefone: </strong>" . $linha['telefone']."</br>");
echo "<strong>email: </strong>". $linha['email']."</br>";
if (isset($_POST['nome']) === 'Andrêy Ferraz' || 'Andrêy' || 'Ferraz' || 'Andrey'){
require 'andreyferraz.php';
}
}
} else {
echo "Nenhum resultado para a sua busca.";
}
$conexao->close();