Posts by Eduardo Ferreira • 13 points
4 posts
-
0
votes1
answer62
viewsQ: Only get the lang of the clicked class
I need to take only the lang value of the clicked item, but only takes the first value. I don’t know how to solve php: $i = 0; while($rowFoto = mysqli_fetch_array($matrizFoto)) { echo "<div…
-
0
votes1
answer506
viewsQ: If inside a Success in ajax
I make the request, I get the right amount, but at the time of the check it’s not right $.ajax({ url:'includes/checkCPF.inc.php', method:'POST', type:'POST', data:{cpf:cpf}, success:function(data){…
-
0
votes3
answers841
viewsA: Merge two database array and delete repeated values
The way I got it and it worked was this: <?php while($row_mestre = mysqli_fetch_assoc($matrizMestre)) { $Cor = $row_mestre["CorProduto"]; if(strlen($Cor)>0) { echo '<input type="checkbox"…
-
0
votes3
answers841
viewsQ: Merge two database array and delete repeated values
I need urgent help, I’m doing a database query on several different array. When the information with "implode" and picked up again with "explode", however, I get repeated values and I wanted the…