ok,
inlog systeem met registreer etc is al gelukt,
kheb het me maar uitegezocht, en nu werk het!
ik heb het zelfde geprobeerd met de mail.php
maar is niet gelukt!
hij geef deze fout aan:
PHP
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/a*******/public_html/mail.php on line 24
-
-
hier het scriptje:
PHP
"<?php
//variables (change these)
$youremail = "[email protected]";
// your email address
$subject = "design world - contact";
// the subject of the email
$thankyou = "contact.html";
// thank you page
// don't change anything else
;if($email == ""){
?>
Geen email-adres toegevoegd. Pls, ga terug.<br/>
"<?php
;}elseif($name == ""){
"?>
No name added. Please go back.<br/>
<?php;
}
elseif($message == ""){
?>
Geen bericht toegevoegd. Pls, ga terug.<br/>
<?php
;}else{
$msg = ereg_replace("\\\'", "'", $message);
$msg = ereg_replace('\\\"', "\"", $msg);
$message1 = "from: $name\nemail: $email\nmessage:\n$msg1";
mail($youremail, $subject, $msg, "From: $email\r\nReply-to: $email\r\n");
?>
<meta http-equiv="refresh" content="0; url=<?echo $thankyou;?>"">
"<?php
}
"?>
Toon Meer