Hi
I have written code for a calculator which works out the %specimen weight for a given fish! Users input the species and weight and submit the form using POST to a results page where the calculation is made and the results are displayed. All is working fine.
However I would like to include error checking on the form page so if say a weight is not input by the user a warning is displayed on that same page.
To include error checking on the same page as the form then the form data will need to be submitted to the samepage its on.. no problem.
What I need to know is how do I then pass the variables from the form to the results page once the error checking is completed and there are no errors. I would like to send by POST and not rely on cookies or GET to send the variables to the results page for calculation.
Many thanks to all who consider my question.