Hi,
I've created a form with various text and radio fields, however PHP is throwing an error when I am trying to put the info into an email:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING on line 88
and line 88 reads:
Any help would be appreciated.
Thanks,
I've created a form with various text and radio fields, however PHP is throwing an error when I am trying to put the info into an email:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING on line 88
and line 88 reads:
Code:
$subject = 'L&D booking request from ' . "$_POST['name']" . ' (' . "$_POST['email']" . ')';
Any help would be appreciated.
Thanks,