Is the title clear enough for what I'm trying to convey? It's a bit challenging to explain, but here goes.
My goal: I need to verify if multiple engine numbers (from vehicles) are registered with the local transportation authority. The web interface provided allows me to check only one number at a time, which is not feasible when dealing with over 200 numbers. I previously created a python script for this using web scraping, but now I want to implement it on a server.
A user will input all the numbers in a text file and upload or paste the contents into a text field. Then, I'll automate the form submission on the transportation website for each number using web scraping and display the final status of all the numbers.
I am seeking guidance on how to achieve this on a server. What technologies would be useful? I have experience with Java and JavaScript, but no knowledge of PHP (willing to learn if necessary). I am unsure about implementing this on the server side and any assistance or ideas would be greatly welcomed.
Thank you.