Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVincent Trapani
2,642 PointsI am building a job application form. What happens to the inputted data after it is submitted?
I understand how to build the form on the front end thanks to the HTML forms course. No issue there. I also understand that the inputted information is sent to the backend/server, but that is all I know. Does it then turn into php code? Even so, what can I do with it?
My company uses either an old fashioned paper application (yawn...) or a pdf app I created. Issue here is both of these methods are slow and inefficient. I host the apps on Google drive (either scanned for paper app or saved pdf), so my desired result is to have an applicant input their information on our website, and then I get a beautiful and sexy application as a result (something manageable and universal like a pdf).
In other words, raw and unsexy information (ie php code I assume) is not my desired result.
A few relevant details to my question are: most applicants are not super computer savvy ie can't figure out how to download, fill out and send a pdf or use something like google chrome or another browser to open and fill out hence why I am here to learn and find a solution to my issue.
Is there anyone who could impart some wisdom and knowledge on me?
Thank you all.
Vince
1 Answer
Seth Kroger
56,413 PointsDoes it then turn into php code?
It gets turned into a message backend processes. The language and framework the backend is written in doesn't matter. It can be in PHP, Java, Ruby on Rails, etc. The important thing is that the backend code needs to be written by someone and is in place to handle the message when it comes in. Otherwise the server won't be able to do anything with the data you're sending. It will be dropped, hopefully with an error response.
You then need to process what you received. Almost certainly you'll save the data to a database for storage, and perhaps turn in into a document or email.