This is a simply question I've not found an answer to.
When creating form elements on a page the refers to itself, how do I keep the form elements set to the user setting with each post to the page.
for example
<form method="POST" action "page.php">
Radio Buton = Yes or No
Text Fields with values added by user
Pop Up Menus with user selection
SUBMIT Button
</form>
When the user first comes to the page and select "Yes", a pop up menu item, and types some text into the text field and then hits submit, the page "resets" back to zero so to speak instead of refreshing with the user input.
In Perl, all this is handled transparently by the CGI.pm, but I've not seen any functions (built in or otherwise) that handle these situations in a similar manner.
How to I go about this in PHP???