登録およびログインシステムを作成しようとしていますが、使用しているこのコードで構文エラーが発生します
header('Location: Profile.php');
コンテキストでは、このコードは次のように使用されます。
/* send email to new Customer */
$emess = "You have sucessfully registered. ";
$emess .= "Your new username and password are: ";
$emess .= "\n\n\t$loginName\n\t";
$emess .= "$password\n\n";
$emess .= "We appreciate your interest. \n\n";
$emess .= "If you have any questions or problems, ";
$emess .= " email service@ourstore.com";
$subj = "Your new customer registration"
# $mailsend=mail("$email","$subj","$emess");
header('Location: Profile.php');
私はPHPを学んでいるので、どんな助けでも大歓迎です。