What's wrong with this code - I'm getting a parse error:
if(!isset($_POST['PID']){ //this is the line i'm getting the parse error with! print "<input value=\"hidden\" name=\"PID\" value=\"$PID\">"; } else{}
Originally posted by Tim L if(!isset($_POST['PID']){ //this is the line i'm getting the parse error with! print "<input value=\"hidden\" name=\"PID\" value=\"$PID\">"; } else{}
Originally posted by Tim L
You are missing a bracket... line should read:
if(!isset($_POST['PID'])){
thank you kindly!