I have a form which has First Name, Last Name text boxes, Radio button(Yes or No) and Dropdown list box. I submit the page to itself to insert the data in the database. I would like to retain the values after reloading the page. How can this be done?
<form name="Form" action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
I appreciate any help.
Thank you
you can simply echo their values in your inputs…