Posts by Marlon Henrique • 25 points
4 posts
-
0
votes2
answers32
viewsA: Problem with call in Database
I was able to solve the problem by putting the query in the following format: $inserir = "UPDATE `usuarios` "; $inserir .= " SET "; $inserir .= " `identidade` = '$rg', `orgao-id` = '$orgao',…
-
0
votes2
answers32
viewsQ: Problem with call in Database
Next person I have several calls that update a database as the user fills the fields but specifically in the following error call in the database and not saved for anything, and all use the same…
-
1
votes1
answer707
viewsQ: How to Recover Variable Value in a Bootstrap Modal Window
My problem is this: I have this code that displays several cars on a table: <?php $veiculos = "SELECT * from veiculo "; $veiculos .= "WHERE id_secretaria = '1' ORDER BY placa DESC LIMIT 2";…
-
1
votes1
answer164
viewsQ: Generate report between two dates with php and mysqli
I’ve been racking my brain for a while, and I need help. I have a code that retrieves a date from the comic book and compares the days difference from that date to today. If this difference is less…