Aug 2, 2009 #1 jlockley Technical User Joined Nov 28, 2001 Messages 1,522 Location US What, please, am I doing wrong here? if (isset($_POST[first])){ $first = $_POST[first];} else {$first = xxx;} this yields: Parse error: syntax error, unexpected '{' in /home/jll/public_html/formprocess.php on line 22 I am perplexed.
What, please, am I doing wrong here? if (isset($_POST[first])){ $first = $_POST[first];} else {$first = xxx;} this yields: Parse error: syntax error, unexpected '{' in /home/jll/public_html/formprocess.php on line 22 I am perplexed.
Aug 3, 2009 1 #2 jpadie Technical User Joined Nov 24, 2003 Messages 10,094 Location FR enquote your array keys. Upvote 0 Downvote
Aug 3, 2009 Thread starter #3 jlockley Technical User Joined Nov 28, 2001 Messages 1,522 Location US I apologize, but I can't find any information on "end quote". do you mean $_POST["first"] ? Sorry, but I'm a little confused. Upvote 0 Downvote
I apologize, but I can't find any information on "end quote". do you mean $_POST["first"] ? Sorry, but I'm a little confused.
Aug 3, 2009 #4 jpadie Technical User Joined Nov 24, 2003 Messages 10,094 Location FR not end quote. enquote = 'surround in quotation marks' Upvote 0 Downvote
Aug 3, 2009 Thread starter #5 jlockley Technical User Joined Nov 28, 2001 Messages 1,522 Location US ooh..sorry. thank you. Upvote 0 Downvote