Nieuw lid |
|
Hallo mensen met Antony,
Ik zit met het volgende probleem, het contactformulier op mijn website:
http://www.pcqualitybonte.nl/contactinfo.php geeft steeds mijn error pagina weer als ik het
formulier (ingevuld) probeer te verzenden.
Ik ben hier de afgelopen week al mee bezig en ik zie niet waar de fout zit, kan iemand mij misschien helpen
om dit contactformulier weer werkend te maken, ik moet hem maandag af hebben en zit er dus nogal om verlegen
Met vriendelijke groet, Antony Bonte.
Hieronder post ik even mailform code en het de code uit het php bestandje: "mailer.php"
HET CONTACTFORMULIER CODE:
http://plaatscode.be/26011/
MAILER.PHP:
<?
/* Form Mailer Program */
/* Edit HTML at bottom of script for HTML output */
/* ©2000 YOA/LSYF/YoAi */
$errorpage = "error.htm";
$mailto = "info@pcqualitybonte.nl";
$required = array("subject","email","telefoon"); // what do you wish to require?
// edit below this line at your own risk
$n = 0;
do {
$r = $required[$n];
if(!$$r) {
print Header("Location: $errorpage");
exit;
}
$n++;
} while ($n != count($required));
$a = urldecode($QUERY_STRING);
$a = str_replace("&","\n\n",$a);
$a = str_replace("=",": ",$a);
$a = str_replace("@","_AT_",$a);
mail($mailto,$HTTP_GET_VARS["subject"],$a,"From: $mailto");
?>
<html><head><title>Mail Sent</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h2 align="center"> </h2>
<h2 align="center"><font color="#C10061">Hartelijk dank !</font> </h2>
<p align="center"> </p>
<h2 align="center"><font color="#000066">Uw contact formulier is met succes verzonden.</font></h2>
</body></html>
<? /* Form Mailer Program */ /* Edit HTML at bottom of script for HTML output */ /* ©2000 YOA/LSYF/YoAi */ $errorpage = "error.htm"; $mailto = "info@pcqualitybonte.nl"; $required = array("subject","email","telefoon"); // what do you wish to require? // edit below this line at your own risk $n = 0; do { $r = $required[$n]; if(!$$r) { } $n++; } while ($n != count($required)); mail($mailto,$HTTP_GET_VARS["subject"],$a,"From: $mailto"); ?> <html><head><title>Mail Sent</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <h2 align="center"> </h2> <h2 align="center"><font color="#C10061">Hartelijk dank !</font> </h2> <p align="center"> </p> <h2 align="center"><font color="#000066">Uw contact formulier is met succes verzonden.</font></h2> </body></html>
|