Apply page and viewing application section in php
Moderator: General Moderators
Apply page and viewing application section in php
I having a website that having 2 user.. employee and employer..mean theres 1 database and 2 tables.. when employer advertise they vacancy, the vacancy will appear at the main page of website.. The things that i wanted to do here is, when employee see the vacancy, and they will click the link and see the more details about the vacancy.. The page where showing the vacancy detail, theres a apply "button" for employee to apply the job.. after the employee press the apply "button", employer can check who are person who apply the job that they advertise for.. i wanna to know how to do and process of applying section and employer viewing the employee who apply the job.. anyone can give suggestion? Or the apply part do i need a database to store the employee name that apply for it or what?
- social_experiment
- DevNet Master
- Posts: 2793
- Joined: Sun Feb 15, 2009 11:08 am
- Location: .za
Re: Apply page and viewing application section in php
You would have to display the link and some reference to the record containing information about the job. Since you mention hyperlinks; $_GET is a good way of passing along information; just make sure of all the security around using it (validating & sanitizing input). When that link is clicked you would select the corresponding data form the database and display it.aquilina wrote:when employee see the vacancy, and they will click the link and see the more details about the vacancy.. The page where showing the vacancy detail, theres a apply "button" for employee to apply the job.. after the employee press the apply "button", employer can check who are person who apply the job that they advertise for
The submitting part will have to also contain information about the user submitting the form otherwise employer won't know who to contact; maybe use the user's username (or any unique part of the user information) for this purpose. You could place it in a hidden field since your will be using a form.
Hth
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
Re: Apply page and viewing application section in php
i still thinking about when the employee is pressed the apply "button", wheres the place to store it so that the employer can view the person who apply for it.. or should i need a database for that?
- social_experiment
- DevNet Master
- Posts: 2793
- Joined: Sun Feb 15, 2009 11:08 am
- Location: .za
Re: Apply page and viewing application section in php
Definitely a databaseaquilina wrote:i still thinking about when the employee is pressed the apply "button", wheres the place to store it so that the employer can view the person who apply for it.. or should i need a database for that?
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering