I'm trying to make a registration and login system and I'm getting a syntax error in this code where I'm using
header('Location: Profile.php');
In the context this code is used as follows:
/* 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');
Any help would be much appreciated as I am learning PHP.