Page 1 of 1
Apply page and viewing application section in php
Posted: Sat Dec 10, 2011 10:04 am
by aquilina
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?
Re: Apply page and viewing application section in php
Posted: Sun Dec 11, 2011 12:10 am
by aquilina
BUMP!
Re: Apply page and viewing application section in php
Posted: Sun Dec 11, 2011 2:15 am
by social_experiment
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
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.
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
Re: Apply page and viewing application section in php
Posted: Sun Dec 11, 2011 2:59 am
by aquilina
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?
Re: Apply page and viewing application section in php
Posted: Sun Dec 11, 2011 3:04 pm
by social_experiment
aquilina 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?
Definitely a database