PHP Code:
{
$text = "Hello, $a['name']\n\n";
$text .= "This email contains trusted information.\n";
$text .= "Do not share this email with someone.\n";
$text .= "Your password will be unique,\n";
$text .= "You can change it ingame or throught the website\n";
$text .= "This is your new password:\n";
$text .= "$password";
$text .= "\nRegards,";
$text .= "\n$sitename, $siteowner";
$text .= "\n\n\n";
$text .= "This is an automatic generated email do not answer.";
mail($a['email'], "New password", $text, $header);
}
Code:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /process.php on line 37
whats wrong? :X