Posts by Patrick Dantas • 1 point
4 posts
-
-3
votes3
answers313
viewsA: Login problems using the crypt() function in PHP
You are saving the encrypted password in your bank when you register, just when you bring it back it will continue like this, so when compare and need to encrypt also the password that the user…
-
0
votes3
answers99
viewsA: Sum of groups in an SQL
You can use an aggregation function as SUM(): SELECT S1.id,S1.cd_secretaria, SUM(S1.id,S1.cd_secretaria), to_char(to_timestamp(sum((S2.nr_horas) * 60)), 'MI:SS') FROM sch_sismapa.tb_servidor S1 JOIN…
-
0
votes1
answer199
viewsA: How to join Datatables with PHP in a checkbox search?
Well after much suffering for not having experience with Jquery I managed to use it to just put in the input when the marker is Checked = TRUE, when false I use the replace of Javascript to remove…
-
-1
votes1
answer199
viewsQ: How to join Datatables with PHP in a checkbox search?
Get ready because business is very complex. I’m using the library datatables of Jquery (I’m pretty new at this) to list a table from my bank, when listing, each record received a checkbox so I could…