Posts by Expresso 1002 • 35 points
5 posts
-
0
votes1
answer31
viewsQ: Filter query for mysql dates
have this mysql table: And I have the following appointment: SELECT * FROM tabela WHERE 1 = 1 AND data_prova >= '2020-03-01' AND data_prova <= '2020-03-26' Well, with this select use for a…
-
0
votes1
answer186
viewsQ: Enable input when arriving at selected checkbox amount
Guys I got this input: <input type="submit" id="cadastrar" value="Cadastrar" disabled> I have a grid that is filled and each line has one checkbox: <td> <input type="checkbox"…
-
1
votes1
answer31
viewsQ: Pass Array value by checkbox
I have this checkbox: <input type="checkbox" name="seleciona[]" value="<?= $row_questao['codprova'] ?>" > I have a query that returns multiple records and each record has one checkbox…
phpasked Expresso 1002 35 -
-1
votes2
answers814
viewsQ: Simulate Automatic Click when loading HTML page
I have this Pod, and I wish it to be invisible: <input type="button" id="invisivel" value="" style="visibility: hidden;" onclick="toggleFullScreen()"> I would like when the page pressed that…
javascriptasked Expresso 1002 35 -
0
votes2
answers96
viewsQ: Radio input array in PHP form
I have the following code: for ($n = 0; $n < $totquestoes; $n++) { $al = $n + 1; $cod = $linha['codprova']; $q[] = $linha['questao']; $r1[] = $linha['descquestao1']; $r2[] =…