Posts by Davi Sousa • 33 points
5 posts
-
0
votes3
answers711
viewsA: Split form with radios in 2 columns
echo"<div class='radio'>"; echo"<label>"; echo"<input type='radio' name='v_desc' id='$v_funcao' value='$v_funcao' >$v_desc </label></br>"; echo"</div>"; CHANGE TO…
-
0
votes1
answer172
viewsQ: Traverse an array of a php function
I have this function, I would like to go through its values separately but I’m stuck here and I can’t think straight to do a foreach for example. <?php function numeros_pequenos($zero, $um,…
-
0
votes0
answers912
viewsQ: Clear memory variable data
I have a function that through click detection makes a post to Act.php Act calls a php function that inserts comments. Everything works, massssssssssssss, as there is no refresh on the page and the…
-
1
votes3
answers236
viewsA: Receive json mysql data
Thank you very much, thanks to the help I managed to solve in the following way. $clientes = DBRead('clientes', null, '*'); $nam = json_encode($clientes); $res = json_decode($nam, true); foreach (…
-
1
votes3
answers236
viewsQ: Receive json mysql data
Hello, I have the following function to read mysql BD data. Here I call -> $clientes = DBRead('clientes', null, 'nome, telefone1'); Here I display -> echo $nam = json_encode($clientes);…