|
You can use php to post the variables back to the original form.
On the back button, you currently have some javascript that just takes the user back. You could make this button a form, with hidden form fields with the values that were posted from the cost-calculator.
Then, on your cost-calculator page, check to see if these variables were passed. If they were passed, then set the values of each field with their corresponding variable.
|