Good Morning. I have a program that displays a survey with questions and has a submit button. When the submit is pressed I update a mysql table as follows:
if ($submit) {
echo "Thank you! Survey has been submitted
$db=.......
$sql="Insert.....
} else {
display form ....
The person using this will be submitting many surveys as a file maintenance program to be reported from. Currently, in order to submit another survey, they need to do a back button and do it all again. redisplay the form, when done hitting the submit button go to the echo page hitting the back buttin.
My question is can I get some help with a less cumbersome way to submit multiple records instead of the echo to a new page and then the back key to redisplay the form.
Thanks,
Melissa