Given the following form:
<form action="action_page.php">
<fieldset>
<legend>Personal information:</legend>
First name:<br>
<input type="text" name="firstname" value="Mickey"><br>
Last name:<br>
<input type="text" name="lastname" value="Mouse"><br><br>
Senha:<br>
<input type="password" name="senha" value="Senha"><br><br>
<input type="submit" value="Submit">
</fieldset>
</form>
How can I recover the data entered by the user, and post it on this same form? For example, the user does the registration, this data goes to the database, and then I own an admin page where all the registered users are presented (up to ai blz), so for each user I would have the options to delete, edit, being that when clicking on edit the displayed screen is the one of the form above but with the user data to be changed? It's like a CRUD (I think) only I'm kind of (not to say totally) lost ...