This is my code:
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<TITLE>Professionl Job Search</TITLE>
<FRAMESET BORDER=0 FRAMESPACING=0 FRAMEBORDER=0 ROWS="60,*">
<FRAME NAME="header" SRC="./header_show.html" SCROLLING=NO MARGINWIDTH="0" MARGINHEIGHT="0" FRAMEBORDER=NO BORDER="0" NORESIZE>
<? print("<FRAME NAME=\"body\" SRC=\"./search_body.php?jobtype=$jobtype\" SCROLLING=AUTO MARGINWIDTH=0 MARGINHEIGHT=0>"); ?>
</FRAMESET>
</HEAD>
The "body" frame almost works, the problem is that $jobtype is actually "General Opportunities" and it only sends "General" and drops the "Opportunities". I have tried putting:
<? print("<FRAME NAME=\"body\" SRC=\"./search_body.php?jobtype=\"$jobtype\"\" SCROLLING=AUTO MARGINWIDTH=0 MARGINHEIGHT=0>"); ?>
But this doesn't work either
Any help would be appreciated.