Posts by Iohanan Carvalho • 13 points
2 posts
-
0
votes2
answers895
viewsQ: PHP PDO Notify user which registration name already exists
Hello. The code below does not allow the user to choose an already used name. But I would still like to warn the user who chose the wrong name so he knows he needs to choose another registration…
-
1
votes1
answer350
viewsQ: PDO PHP: How to make a logged-in user delete their account?
The user accesses the logged in page: <?php session_start(); echo 'Bem vindo, '.$_SESSION['username']; ?> <br /><a href='logout.php'>Logout</a> I want him to press a button…