Do you have any suggestions with my problem. I need to use get and post at the same time. Get because I need to output what the user has typed. And post because I need to ac
You can also use a hidden field in the form
and use
$_POST['foo']
to retrieve the value.