このコード行でこの構文エラーが発生し続けます。
$subject = 'Message - General Inquiry from '.$field_name' with the email of '.$field_email;
誰か助けてくれませんか?
このコード行でこの構文エラーが発生し続けます。
$subject = 'Message - General Inquiry from '.$field_name' with the email of '.$field_email;
誰か助けてくれませんか?
$subject = 'Message - General Inquiry from '.$field_name.' with the email of '.$field_email;
.
の後に演算子がありません$field_name
。一方、補間のみを使用する場合は、.
演算子を気にする必要はありません。
$subject = "Message - General Inquiry from $field_name with the email of $field_email";