I developed a function that searches the database for a client by ID:
function buscaId ($id,$conexao){
$resultados= array();
$query= "select * from cliente where id like '$id%' ";
$resultado= mysqli_query($conexao,$query);
while ($resultado_cliente = mysqli_fetch_assoc($resultado)) {
array_push($resultados, $resultado_cliente);
}
return $resultados;
}
However, when I type "%%" ou "VAZIO "
into "Search", it brings all the clients of the bank.
How do I disable this? The bank will have 7,000 lines.