Hi,
I need help passing variables in php. I have an html page describing a job with an id number(jobdescription.html).
-when the user clicks on a submit button, I want to open another html page (jobsubmit.html) with a form and have the job id autofill into a form field named 'job_id'.
-further, when I hit submit on jobsubmit.html page, I want the job_id and all of the other fields the user fills out to enter into a table (this part, I know how to do).
I know how to use php to place data from a form into a database..BUT, My question is, how do I pass a variable (job_id) between the original job description page, to the jobsubmit.html page, and into a form field?? Is it even possible?
thanks in advance,
-l.