Posts by Rafael • 1 point
2 posts
-
0
votes1
answer66
viewsQ: Mysql query returning empty
I made the following selection $selficha = mysqli_query($conexao,"SELECT * FROM ficha WHERE nome='$user->username'"); $ficha = mysqli_fetch_row($selficha); When I want to get a table result ficha…
-
0
votes2
answers41
viewsA: How do I display the search results in the database?
It worked out! I was looking like this before all this: $selficha = mysqli_query($connection,"SELECT * FROM sheet where name='$user->username'"); $fiche = mysqli_fetch_row($selficha); And then on…