Yes very possible.
The method in which we advise you about doing this varies on where the job title is stored exactly.
But one thing I know for sure is that the second page with the form has got to be .php as well to recieve that job title to be used.
Do you want the job title to be passed onto this form as a variable for passing onto the 'SUBMIT' routine you want to continue this form on with or do you want it to be a text box field to give the user the choice of changing the job title?
You shouldn't give them the choice of changing the job title like this so passing along a variable is most advised.
The easiest method I see right now:
The user sees a job description and decides to apply for job.
They click a form submit button with caption 'Apply!'.
The method=POST so that you can retrieve the job title for the form page.
The form page should be *.php to recieve the POST variable, $POST['job_title'] as just text (no option to edit this).
The form is displayed on page below the code
echo "<b>".$_POST['job_title']."</b><br>";
When the user clicks the 'Submit' button to apply the variable is passed along...
hang on...how is it passed along? I just realised it is more difficult then I assumed :xbones:
Unless you have a form object that allows you to send the variable along again, I see no easy of doing this quite yet.
I'll let you know as soon as poss the easy method of doing this.
Goes off to RTFM