Posts by Jefferson • 63 points
3 posts
-
2
votes1
answer876
viewsA: How to activate Logcat ?
Logcat usually appears at the bottom of Android Studio, in the Android Monitor tab. Try to press ALT+6 on Windows or CMD+6 in the case of Mac…
-
1
votes1
answer287
viewsQ: How to retrieve the click on an array of buttons
I’m making a minefield, so I have to add an array of buttons to a panel (to be the houses). I created the button array and added each[x][y] button in a panel. But I don’t know how to retrieve the…
-
3
votes2
answers341
viewsA: PHP array for JSON
Try this: $return_arr = array(); while ($row = mysqli_fetch_assoc($query)) { $row_array['nome'] = $row['nome']; $row_array['sobrenome'] = $row['sobrenome']; array_push($return_arr,$row_array); }…