Hello,
How can I save the values of the current form if user presses back button? (not browser back button)..
Here is the code
<form name="form" method="post" action="save.php>
<input type="text" name="text1" value="">
</form
[code=php]
Here the text1 value is linked/in relation with form which will send it to save.php. How can I like this field to other form which will send this value back to the data entry page?
of course, I can copy the values using onblur function, and save the values in a hidden field and then use that hidden field to a form with back button but I don't want to use that.
Any suggestions?