Posts by LUIS AMBROSIO • 11 points
3 posts
-
0
votes1
answer60
viewsA: How to read items from one array within another?
I made some adjustments to this code and got the result. I would like to share. (example code) <?php $Array = array( array("Conta" => "FRANCIELE OLIVEIRA", "CPF" => "", "TelefoneRes"=>…
-
-2
votes1
answer60
viewsQ: How to read items from one array within another?
This is my multidimensional array: <?php $beneficiarios = array ( array( "codigo_membro" =>$cod, "nome" => $_POST['nome1'], "n_identificacao" => $_POST['n_identificacao1'], "parentesco"…
-
0
votes1
answer547
viewsQ: How to Make a checkbox not selected if there is no previous checkbox selection?
I have a stack of tuition, where each one meet in a select. I would like, at first, all of them to be disabled except the first check, and when enabling the first check, the second check could be…