I have checklists that my employees fill out at job sites. I want to be able to take their answers through the e-mail response form I send them and import their answers from that PDF form I created into another form with a different layout, but using the same data fields as the original form they submit to me. Please help. Thanks.
let me explain:
1- I have pdf form (the type where there are a lot of information needed)
2- The client will fill up the form and submit it
3- I have a server-side script that catches the submitted form and save it to a database (MySQL, e.g.)
4- when the client will go back to the form again, he/she need not to complete the form again : he/she just need to input identifying data (username and password)
5- the PDF will send the username and password via HTTPrequest
6- the server-side script will do the query to provide the data and back to the client
7- upon receipt of the data, the PDF will do the filling of the rest of the fields
8- changes can be made as necessary and submit the form aka step 3
I need help on how I can implement from step 4. Can AJAX be used? Like so, it can be customized to solve the earlier posted problem.
Thanks in advance.