Posts by Alucard • 86 points
5 posts
-
3
votes1
answer45
viewsQ: MYSQL 5.6 does not recognize the query as it should
Greetings! I’m building a query to pick all the times the value was 0 on a given day and the highest time of the previous day. The data in my database is similar to the data I put in SQL Fiddle.…
-
0
votes2
answers121
views -
0
votes1
answer36
viewsA: Script to Save the Page and Change the URL, and Save the Next Page
I believe the method Pushstate() can help.
-
1
votes2
answers335
viewsA: I wanted to put an Alert in my login screen PHP, JS, HTML, MYSQL
I don’t really know how MVC works and I don’t know if it’s the best way to do it, but I hope I can help you: $query = "SELECT Count(*) FROM usuario WHERE matricula=:matricula and…
-
3
votes2
answers3463
viewsA: How to check if a checkbox is checked with jquery?
Jquery has the selector :checked, and with the help of length you can get the value 1 when the object is selected. This way, you can "check" one or more checkbox. While the checkbox is not selected,…