我正在尝试创建一个注册和登录系统,但在我使用的这段代码中出现语法错误
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 时,任何帮助都将不胜感激。