Posts by Ana Paula Francisco • 11 points
2 posts
-
1
votes2
answers74
viewsA: Non-specific search filter
Mariana see if this helps you: $where = ''; $whereFiltro = array(); $filtroConsulta = ''; if(!is_null($servico) && !empty($servico)) { $whereFiltro[] = "servico LIKE '%{$servico}%'"; }…
-
0
votes2
answers512
viewsA: Update modal database
Your form uses the post method for sending data, so change the update.php file. $numero = $_GET['numero']; //altera aqui para $_POST['numero'] $funcionario= $_POST['funcionario']; $rca=…