Tutorial to export data
I have 21 computers linked together via a switch. 20 of which will be used as clients and one as a server. Each client will have a pdf form saved to its desktop. (The form can't be saved on the server because connection will be lost between starting and submitting). The form is a worksheet that will be filled out by students. I would like to create a submit button on this form that extracts the data from the pdf and submits it to the server. The server will then process the data (grade) and provide feedback to the student if they passed or failed. The problem is I'm not sure what the best route is to accomplish this.
I'm familiar with html, php, and javascript but its been over a decade since I've written any code.
I know this will be quit a bit of code but if someone could point me in the right direction of where to start I'd appreciate it. Better yet, if there's a GUI interface that automates such a process that be even better. Thanks in advace!
Steps:
-extract data from form via button on form (javascript)
-use html request to post data to server via php
-server receives data
--validates/grades it
--stores data
--provides feedback to client
