Change this
Originally posted by astralweeks
<a href=\apply.php?job_title=$job_title\">
to this:
echo "<a href=\apply.php?job_title='";
echo $job_title;
echo "\'>"
Oh yeah and rename that page you're referring to as .php because anything in a .HTML page wetehr it's valid PHP syntax or not, will not get processed as php on the server unless the page ext is *.php .
I have suggested the above changes because even if you change the extension of the file, it will still show the variable name instead of carrying the actual variable VALUE over because
a) You haven't assigned this text or any thing in side of it to be PHP
b) You type the variable name $job_title which is basically outputting as a normal string. You must seperate the text which is string and that which is meant to be a variable value such as :
"Hello ".$name
will work over
Hello $name
Or at least it does on my cranky IE6 browser