bamsi logo gif

Reageren kan hier.

Fout, bericht is niet verzonden !

Bericht is verzonden, dank u!

Vul hier uw naam in*:
   

Vul hier uw emailadres in*:
   

Reactie of opmerking*:
   

CAPTCHA Image   Reload Image
 

Tik bovenstaande code hieronder in:*


$value) { if (!is_array($key)) { // sanitize the input data if ($key != 'ct_message') $value = strip_tags($value); $_POST[$key] = htmlspecialchars(stripslashes(trim($value))); } } $name = @$_POST['ct_name']; // name from the form $mail = @$_POST['ct_mail']; // mail from the form $message = @$_POST['ct_message']; // the message from the form $captcha = @$_POST['ct_captcha']; // the user's entry for the captcha code $name = substr($name, 0, 64); // limit name to 64 characters $errors = array(); // initialize empty error array if (isset($GLOBALS['DEBUG_MODE']) && $GLOBALS['DEBUG_MODE'] == false) { // only check for errors if the form is not in debug mode if (strlen($name) < 3) { // name too short, add error $errors['name_error'] = 'Graag uw naam'; } if (strlen($message) < 20) { // message length too short $errors['message_error'] = 'Uw bericht a.u.b.'; } } // Only try to validate the captcha if the form has no errors // This is especially important for ajax calls if (sizeof($errors) == 0) { require_once dirname(__FILE__) . '/securimage.php'; $securimage = new Securimage(); if ($securimage->check($captcha) == false) { $errors['captcha_error'] = 'Foute code ingevoerd !
'; } } if (sizeof($errors) == 0) { // no errors, send the form $time = date('r'); $message = "Er is een bericht verstuurd vanuit www.weerhaas.nl.

" . "Naam: $name
" . "Bericht:
" . "
$message
" . "

IP Address: {$_SERVER['REMOTE_ADDR']}
" . "Tijd: $time
" . "Browser: {$_SERVER['HTTP_USER_AGENT']}
"; $message = wordwrap($message, 70); if (isset($GLOBALS['DEBUG_MODE']) && $GLOBALS['DEBUG_MODE'] == false) { // send the message with mail() mail($GLOBALS['ct_recipient'], $GLOBALS['ct_msg_subject'], $message, "From: {$GLOBALS['ct_recipient']}\r\nReply-To: {$email}\r\nContent-type: text/html; charset=ISO-8859-1\r\nMIME-Version: 1.0"); } $_SESSION['ctform']['error'] = false; // no error with form $_SESSION['ctform']['success'] = true; // message sent } else { // save the entries, this is to re-populate the form $_SESSION['ctform']['ct_name'] = $name; // save name from the form submission $_SESSION['ctform']['ct_mail'] = $mail; // save mail from the form submission $_SESSION['ctform']['ct_message'] = $message; // save message foreach($errors as $key => $error) { // set up error messages to display with each field $_SESSION['ctform'][$key] = "$error"; } $_SESSION['ctform']['error'] = true; // set error floag } } // POST } $_SESSION['ctform']['success'] = false; // clear success value after running