Hey
I have a slight problem with this PHP script. I'm new to this.
Here's the script. I'm trying to pass the variable jcode="" from a job_list page.
I am trying to retrieve the value passed but it keeps giving me :
Parse error: parse error, unexpected T_ECHO in ...job_details.php on line 16
Here's the script:
parse_url()
echo "jcode=$jcode";
// check for missing parameters
if (!$jcode || $jcode == "")
{
header("Location:error.php");
exit;
}
// open connection to database
Would really appreciate some help.
Thanks
shiz