Posts by jonatas Borges • 125 points
4 posts
-
0
votes1
answer92
viewsA: Error saving to Mysql database
Try this, if it doesn’t work, at least you will know where the error comes from. Then replace echo $conn->error; by echo "Erro ao salvar<br>". <?php $nome = $_POST['Nome']; $endereco =…
phpanswered jonatas Borges 125 -
1
votes1
answer134
viewsQ: How to take a JSON String and display in recyclerview without repeating?
I have a json with a list of users, photos posted by this user. The idea is to have a recyclerview with the name of the users, and when clicked, it will display the photos of that user. The…
-
0
votes1
answer54
viewsQ: Recyclerview is displaying entire json array instead of object
Inside recyclerView everything is being displayed correctly except the "name" (Notifier > name) When I use String creatorName = hit.getString("notifier"); it shows the entire "Notifier" object.…
-
0
votes0
answers647
viewsQ: Send value "0" or "1" from the checkbox to the database
I have the table "Cd_comments" in the mysql database, with the column "comment_id" "user_id" "text" and "anonymity" I want to make a system for a website, where the user will comment, and if he has…