0
Search ta returning a news and ta returning all the names of the database:
"Notice: Undefined index: search_name" in the.php connection.
if(isset($_POST["acao"])){
if($_POST["acao"] == "pesquisar_nome"){
pesquisarCliente();
}
}
/* Pesquisar Cliente*/
function pesquisarCliente(){
$bd = new mysqli("localhost", "root", "", "projeto_ap2");
$pesquisaNome = $_POST['pesquisar_nome'];
$sqlPesquisarNome = "SELECT nome FROM cliente WHERE nome LIKE '%$pesquisaNome%'";
$resultado = $bd->query($sqlPesquisarNome);
while($rows = mysqli_fetch_array($resultado)){
echo "Nomes relacionados: ".$rows['nome']."</br>";
}
}
On the search form:
<form action="../conexao.php" method="POST">
<tbody>
<tr>
<td>Pesquisar:</td>
<td><input type="text" name="nomeCliente" value="" placeholder="Digite um nome..."/></td>
</tr>
<tr>
<td><input type="hidden" name="acao" value="pesquisar_nome" /></td>
<td><input type="submit" value="Pesquisar" name="Pesquisar" /></td>
</tr>
</tbody>
</form></br></br>