I have a form for the user to fill out which is then validated using php. if something is missing/wrong in the form I want to redisplay the form with the previous data in it or at least give the user the option of pressing some kind of back button to get it back. If they press back now the form is empty once again. Is there some "easy" way to do this without parsing the entire form with array data from the previous submit?
Thanks
Jadow
<input type=text name=foo value=$foo>
$foo will display in the test field. if $foo = "", then there is nothing in the field. Once the user hits submit, $foo has a value or doesn't. The result will be displayed in the test field.
test? I meant text field