{lang: 'de'}
Flashhilfe.de - Flash Community

Hilfe bei Kontaktformular

 


AntwortenRegistrieren Seite1  

abgemeldeter Benutzer#1
29.12.2011, 16:51

Hallo, brauche mal dringend hilfe, kenne mich damit überhaupt nicht aus, benötige für eine homepage ein kontaktfomular, habe es auf einer Seite generiert... aber iwie funktioniert das hinten und vorne nicht, hätte auch gerne keine Werbung drin und unten ein captache... kann mir da einer helfen??

<?php
error_reporting(E_ALL);
/**************************************************

   Formulargenerator v1.0 by 4Webmaster.net

         Programmed by Borlabs
         Website: www.borlabs.de

         visit www.4webmaster.net

**************************************************/
$error = false;
$errors = array();
$receiver = 'an****{at}gmx.de';

function check_email ($string) {
   // RegEx created by Myle Ott, found at regexlib.com
   return preg_match('/^([a-zA-Z0-9_\-])+(\.([a-zA-Z0-9_\-])+)*@((\[(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5]))\]))|((([a-zA-Z0-9])+(([\-])+([a-zA-Z0-9])+)*\.)+([a-zA-Z])+(([\-])+([a-zA-Z0-9])+)*))$/i', $string);
}

function check_onlynumbers ($string) {
   return preg_match('/^[0-9,.]{1,}$/', $string);
}

function check_onlyletters ($string) {
   return preg_match('/^[a-zA-ZäöüÄÖÜß]{1,}$/', $string);
}

function send_email ($subject, $body, $receiver, $html = 1) {
   if ($html != 1) {
      $body = str_replace('
', "\n", $body);
      $body = str_replace('<br>', "\n", $body);
      $body = strip_tags($body);
   }

   $subject = str_replace('\n', '', $subject);
   $subject = str_replace('\r', '', $subject);

   if ($html) {
      $header   = 'MIME-Version: 1.0' . "\n";
      $header .= 'Content-type: text/html; charset=iso-8859-15'."\n";
      $header .= 'From: '.$receiver.' <'.$receiver.'>'."\n";
   } else {
      $header   = 'MIME-Version: 1.0' . "\n";
      $header .= 'From: '.$receiver.' <'.$receiver.'>'."\n";
   }

   if (mail($receiver, $subject, $body, $header)) {
      return true;
   } else {
      return false;
   }
}

function array_stripslashes(&$var) {
    if(is_string($var)) {
        $var = stripslashes($var);
    } else {
        if(is_array($var))
            foreach($var as $key => $value)
                array_stripslashes($var[$key]);
    }
}

if(get_magic_quotes_gpc()){
  array_stripslashes($_GET);
  array_stripslashes($_POST);
  array_stripslashes($_REQUEST);
  array_stripslashes($_COOKIE);
}

if (!empty($_POST)) {
   // Prüfung für das Feld "Veranstaltung"
   $errors['Veranstaltung'] = null;   if (empty($_POST['Veranstaltung'])) {
      $error = true;
      $errors['Veranstaltung'] = ' class="error"';   }

   // Prüfung für das Feld "Vorname"
   $errors['Vorname'] = null;   if (empty($_POST['Vorname'])) {
      $error = true;
      $errors['Vorname'] = ' class="error"';   }

   // Prüfung für das Feld "Nachname"
   $errors['Nachname'] = null;   if (empty($_POST['Nachname'])) {
      $error = true;
      $errors['Nachname'] = ' class="error"';   }

   // Prüfung für das Feld "Straße, Hausnummer"
   $errors['Strasse_Hausnummer'] = null;   if (empty($_POST['Strasse_Hausnummer'])) {
      $error = true;
      $errors['Strasse_Hausnummer'] = ' class="error"';   }

   // Prüfung für das Feld "PLZ, Ort"
   $errors['PLZ_Ort'] = null;   if (empty($_POST['PLZ_Ort'])) {
      $error = true;
      $errors['PLZ_Ort'] = ' class="error"';   }

   // Prüfung für das Feld "Geburtsdatum"
   $errors['Geburtsdatum'] = null;   if (empty($_POST['Geburtsdatum'])) {
      $error = true;
      $errors['Geburtsdatum'] = ' class="error"';   }
   if (!check_onlynumbers($_POST['Geburtsdatum'])) {
      $error = true;
      $errors['Geburtsdatum'] = ' class="error"';   }

   // Prüfung für das Feld "Email"
   $errors['Email'] = null;   if (empty($_POST['Email'])) {
      $error = true;
      $errors['Email'] = ' class="error"';   }
   if (!empty($_POST['Email']) && !check_email($_POST['Email'])) {
      $error = true;
      $errors['Email'] = ' class="error"';   }

   // Prüfung für das Feld "Gruppeneinteilung"
   $errors['Gruppeneinteilung'] = null;   if (empty($_POST['Gruppeneinteilung'])) {
      $error = true;
      $errors['Gruppeneinteilung'] = ' class="error"';   }

   // Prüfung für das Feld "Besonderes"
   $errors['Besonderes'] = null;   if (empty($_POST['Besonderes'])) {
      $error = true;
      $errors['Besonderes'] = ' class="error"';   }

   // Prüfung für das Feld "Bezahlung"
   $errors['Bezahlung'] = null;   if (empty($_POST['Bezahlung'])) {
      $error = true;
      $errors['Bezahlung'] = ' class="error"';   }

   // Prüfung für das Feld "AGB`s"
   $errors['AGB_s'] = null;   if (empty($_POST['AGB_s'])) {
      $error = true;
      $errors['AGB_s'] = ' class="error"';   }

}
   $_select_Veranstaltung_Sa17_03_2012KRC_Schwabach_130Euro = (!empty($_POST['Veranstaltung']) && $_POST['Veranstaltung'] == 'Sa17_03_2012KRC_Schwabach_130Euro' ? ' selected="selected"' : null);
   $_select_Veranstaltung_Fr_Sa06_07_04_2012SupermotoPanonia_150Euro = (!empty($_POST['Veranstaltung']) && $_POST['Veranstaltung'] == 'Fr_Sa06_07_04_2012SupermotoPanonia_150Euro' ? ' selected="selected"' : null);
   $_select_Veranstaltung_Fr_Sa06_07_04_2012FreiesFahrenPanonia_80Euro = (!empty($_POST['Veranstaltung']) && $_POST['Veranstaltung'] == 'Fr_Sa06_07_04_2012FreiesFahrenPanonia_80Euro' ? ' selected="selected"' : null);
   $_select_Veranstaltung_So_Mo08_09_04_2012FreiesFahrenPanonia_80Euro = (!empty($_POST['Veranstaltung']) && $_POST['Veranstaltung'] == 'So_Mo08_09_04_2012FreiesFahrenPanonia_80Euro' ? ' selected="selected"' : null);

   $_text_Vorname = (!empty($_POST['Vorname']) ? htmlspecialchars($_POST['Vorname'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_Nachname = (!empty($_POST['Nachname']) ? htmlspecialchars($_POST['Nachname'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_Strasse_Hausnummer = (!empty($_POST['Strasse_Hausnummer']) ? htmlspecialchars($_POST['Strasse_Hausnummer'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_PLZ_Ort = (!empty($_POST['PLZ_Ort']) ? htmlspecialchars($_POST['PLZ_Ort'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_Geburtsdatum = (!empty($_POST['Geburtsdatum']) ? htmlspecialchars($_POST['Geburtsdatum'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_Telefon = (!empty($_POST['Telefon']) ? htmlspecialchars($_POST['Telefon'], ENT_QUOTES, 'iso-8859-15') : null);

   $_text_Email = (!empty($_POST['Email']) ? htmlspecialchars($_POST['Email'], ENT_QUOTES, 'iso-8859-15') : null);

   $_select_Ausruestung_Markenstiefel_10_Tag = (!empty($_POST['Ausruestung']) && in_array('Markenstiefel_10_Tag', $_POST['Ausruestung']) ? ' selected="selected"' : null);
   $_select_Ausruestung_Lederkombi_10_Tag = (!empty($_POST['Ausruestung']) && in_array('Lederkombi_10_Tag', $_POST['Ausruestung']) ? ' selected="selected"' : null);
   $_select_Ausruestung_Helm_inkl_Sturmhaube5_Tag = (!empty($_POST['Ausruestung']) && in_array('Helm_inkl_Sturmhaube5_Tag', $_POST['Ausruestung']) ? ' selected="selected"' : null);
   $_select_Ausruestung_Handschuhe_5_Tag = (!empty($_POST['Ausruestung']) && in_array('Handschuhe_5_Tag', $_POST['Ausruestung']) ? ' selected="selected"' : null);

   $_select_Gruppeneinteilung_vielErfahrung_Tourenfahrer_ = (!empty($_POST['Gruppeneinteilung']) && $_POST['Gruppeneinteilung'] == 'vielErfahrung_Tourenfahrer_' ? ' selected="selected"' : null);
   $_select_Gruppeneinteilung_mittlereErfahrung_normal_ = (!empty($_POST['Gruppeneinteilung']) && $_POST['Gruppeneinteilung'] == 'mittlereErfahrung_normal_' ? ' selected="selected"' : null);
   $_select_Gruppeneinteilung_wenigErfahung_Sonntagsfahrer_ = (!empty($_POST['Gruppeneinteilung']) && $_POST['Gruppeneinteilung'] == 'wenigErfahung_Sonntagsfahrer_' ? ' selected="selected"' : null);

   $_text_Besonderes = (!empty($_POST['Besonderes']) ? htmlspecialchars($_POST['Besonderes'], ENT_QUOTES, 'iso-8859-15') : null);

   $_checkbox_Bezahlung_Ueberweisung_IngDiba = (!empty($_POST['Bezahlung']) && in_array('Ueberweisung_IngDiba', $_POST['Bezahlung']) ? ' checked="checked"' : null);
   $_checkbox_Bezahlung_Paypal_Anja_Israel_gmx_de = (!empty($_POST['Bezahlung']) && in_array('Paypal_Anja_Israel_gmx_de', $_POST['Bezahlung']) ? ' checked="checked"' : null);

   $_checkbox_AGB_s_HiermitakzeptiereichdieAGB_svonSupermoto4fun = (!empty($_POST['AGB_s']) && in_array('HiermitakzeptiereichdieAGB_svonSupermoto4fun', $_POST['AGB_s']) ? ' checked="checked"' : null);

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<!--
   Formulargenerator v1.0 by 4Webmaster.net

      Programmed by Borlabs
      Website: www.borlabs.de

      visit www.4webmaster.net
-->
<title>Kontaktformular</title>
<style type="text/css">
body {
   font: 12px Verdana, Tahoma, Arial, Helvetica, sans-serif;
   color: #444;
}

h1, p {
   margin: 10px; padding: 0px;
}

textarea {
   width: 350px;
   padding: 2px;
   font: normal 12px Verdana, sans-serif;
   border: 1px solid #828790;
   height: 100px;
   color: #777;
}

input.button {
   margin: 0;
   font: bolder 12px Arial, Sans-serif;
   border: 1px solid #828790;
   padding: 1px;
   background: #FFF;
   color: #CC0000;
}

.error_msg {
   padding: 4px;
   background-color: #ffeeee;
   border: 1px dotted #cc0000;
   margin: 5px 10px 5px 10px;
   color: #cc0000;
}

.error { color: #cc0000; }

fieldset { width: 570px; }

div.formulargenerator-4webmaster label,
div.formulargenerator-4webmaster .controlset span {
   width: 150px;
   display: block;
   float: left;
   text-align: right;
}

div.formulargenerator-4webmaster label { margin: 5px; }
div.formulargenerator-4webmaster .controlset span {   margin: 0px 0px 0px 5px; }
div.formulargenerator-4webmaster .controlset label {
   display: inline;
   float: none;
}

div.formulargenerator-4webmaster .controlset input { margin: 0px 0px 0px 10px; }
div.formulargenerator-4webmaster input,
div.formulargenerator-4webmaster select,
div.formulargenerator-4webmaster textarea {
   margin: 2px 2px 2px 5px;
}


div.formulargenerator-4webmaster div { clear: both; }
</style>
</head>
<body>
<?php
if ($error || empty($_POST)) {?>
<form action="<?php echo htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'iso-8859-15'); ?>" method="post">
<fieldset>
<legend>Kontaktformular</legend>
<div class="formulargenerator-4webmaster">
<?php if ($error) { ?>
<div class="error_msg">Bitte alle mit * markierten Felder ausfüllen.</div>
<?php } ?><label for="Veranstaltung"<?php echo !empty($errors['Veranstaltung']) ? $errors['Veranstaltung'] : null ; ?>>Veranstaltung *</label>
   <select tabindex="1" id="Veranstaltung" name="Veranstaltung">
      <option value="Sa17_03_2012KRC_Schwabach_130Euro"<?php echo $_select_Veranstaltung_Sa17_03_2012KRC_Schwabach_130Euro; ?>>Sa 17.03.2012 KRC-Schwabach; 130 Euro</option>
      <option value="Fr_Sa06_07_04_2012SupermotoPanonia_150Euro"<?php echo $_select_Veranstaltung_Fr_Sa06_07_04_2012SupermotoPanonia_150Euro; ?>>Fr+Sa 06.+07.04.2012 Supermoto Panonia; 150 Euro</option>
      <option value="Fr_Sa06_07_04_2012FreiesFahrenPanonia_80Euro"<?php echo $_select_Veranstaltung_Fr_Sa06_07_04_2012FreiesFahrenPanonia_80Euro; ?>>Fr+Sa 06.+07.04.2012 Freies Fahren Panonia; 80 Euro</option>
      <option value="So_Mo08_09_04_2012FreiesFahrenPanonia_80Euro"<?php echo $_select_Veranstaltung_So_Mo08_09_04_2012FreiesFahrenPanonia_80Euro; ?>>So+Mo 08.+09.04.2012 Freies Fahren Panonia; 80Euro</option>
   </select> <br style="clear: both;" />
<div>
   <label for="Vorname"<?php echo !empty($errors['Vorname']) ? $errors['Vorname'] : null ; ?>>Vorname *</label>
   <input tabindex="2" type="text" maxlength="12" id="Vorname" name="Vorname" value="<?php echo $_text_Vorname; ?>" />
</div>
<div>
   <label for="Nachname"<?php echo !empty($errors['Nachname']) ? $errors['Nachname'] : null ; ?>>Nachname *</label>
   <input tabindex="3" type="text" maxlength="12" id="Nachname" name="Nachname" value="<?php echo $_text_Nachname; ?>" />
</div>
<div>
   <label for="Strasse_Hausnummer"<?php echo !empty($errors['Strasse_Hausnummer']) ? $errors['Strasse_Hausnummer'] : null ; ?>>Straße, Hausnummer *</label>
   <input tabindex="4" type="text" id="Strasse_Hausnummer" name="Strasse_Hausnummer" value="<?php echo $_text_Strasse_Hausnummer; ?>" />
</div>
<div>
   <label for="PLZ_Ort"<?php echo !empty($errors['PLZ_Ort']) ? $errors['PLZ_Ort'] : null ; ?>>PLZ, Ort *</label>
   <input tabindex="5" type="text" id="PLZ_Ort" name="PLZ_Ort" value="<?php echo $_text_PLZ_Ort; ?>" />
</div>
<div>
   <label for="Geburtsdatum"<?php echo !empty($errors['Geburtsdatum']) ? $errors['Geburtsdatum'] : null ; ?>>Geburtsdatum *</label>
   <input tabindex="6" type="text" id="Geburtsdatum" name="Geburtsdatum" value="<?php echo $_text_Geburtsdatum; ?>" />
</div>
<div>
   <label for="Telefon"<?php echo !empty($errors['Telefon']) ? $errors['Telefon'] : null ; ?>>Telefon</label>
   <input tabindex="7" type="text" id="Telefon" name="Telefon" value="<?php echo $_text_Telefon; ?>" />
</div>
<div>
   <label for="Email"<?php echo !empty($errors['Email']) ? $errors['Email'] : null ; ?>>Email *</label>
   <input tabindex="8" type="text" id="Email" name="Email" value="<?php echo $_text_Email; ?>" />
</div>
<label for="Ausruestung"<?php echo !empty($errors['Ausruestung']) ? $errors['Ausruestung'] : null ; ?>>Ausrüstung</label>
   <select tabindex="9" id="Ausruestung" name="Ausruestung[]" multiple="multiple">
      <option value="Markenstiefel_10_Tag"<?php echo $_select_Ausruestung_Markenstiefel_10_Tag; ?>>Markenstiefel* 10,- € / Tag</option>
      <option value="Lederkombi_10_Tag"<?php echo $_select_Ausruestung_Lederkombi_10_Tag; ?>>Lederkombi* 10,- € / Tag</option>
      <option value="Helm_inkl_Sturmhaube5_Tag"<?php echo $_select_Ausruestung_Helm_inkl_Sturmhaube5_Tag; ?>>Helm* inkl. Sturmhaube 5,- € / Tag</option>
      <option value="Handschuhe_5_Tag"<?php echo $_select_Ausruestung_Handschuhe_5_Tag; ?>>Handschuhe* 5,- € / Tag</option>
   </select> <br style="clear: both;" />
<label for="Gruppeneinteilung"<?php echo !empty($errors['Gruppeneinteilung']) ? $errors['Gruppeneinteilung'] : null ; ?>>Gruppeneinteilung *</label>
   <select tabindex="10" id="Gruppeneinteilung" name="Gruppeneinteilung">
      <option value="vielErfahrung_Tourenfahrer_"<?php echo $_select_Gruppeneinteilung_vielErfahrung_Tourenfahrer_; ?>>viel Erfahrung (Tourenfahrer)</option>
      <option value="mittlereErfahrung_normal_"<?php echo $_select_Gruppeneinteilung_mittlereErfahrung_normal_; ?>>mittlere Erfahrung (normal)</option>
      <option value="wenigErfahung_Sonntagsfahrer_"<?php echo $_select_Gruppeneinteilung_wenigErfahung_Sonntagsfahrer_; ?>>wenig Erfahung (Sonntagsfahrer)</option>
   </select> <br style="clear: both;" />
<div>
   <label for="Besonderes"<?php echo !empty($errors['Besonderes']) ? $errors['Besonderes'] : null ; ?>>Besonderes *</label>
   <input tabindex="11" type="text" id="Besonderes" name="Besonderes" value="<?php echo $_text_Besonderes; ?>" />
</div>
<div class="controlset">
   <span<?php echo !empty($errors['Bezahlung']) ? $errors['Bezahlung'] : null ; ?>>Bezahlung *</span>
   <input tabindex="12" type="checkbox" id="Ueberweisung_IngDiba" name="Bezahlung[]" value="Ueberweisung_IngDiba"<?php echo $_checkbox_Bezahlung_Ueberweisung_IngDiba; ?> /><label for="Ueberweisung_IngDiba">Überweisung: Ing Diba</label>
   <input tabindex="13" type="checkbox" id="Paypal_Anja_Israel_gmx_de" name="Bezahlung[]" value="Paypal_Anja_Israel_gmx_de"<?php echo $_checkbox_Bezahlung_Paypal_Anja_Israel_gmx_de; ?> /><label for="Paypal_Anja_Israel_gmx_de">Paypal: An****{at}gmx.de</label>
   <input tabindex="14" type="checkbox" id="" name="Bezahlung[]" value=""<?php echo $_checkbox_Bezahlung_; ?> /><label for=""></label>
</div> <br style="clear: both;" />
<div class="controlset">
   <span<?php echo !empty($errors['AGB_s']) ? $errors['AGB_s'] : null ; ?>>AGB`s *</span>
   <input tabindex="15" type="checkbox" id="HiermitakzeptiereichdieAGB_svonSupermoto4fun" name="AGB_s[]" value="HiermitakzeptiereichdieAGB_svonSupermoto4fun"<?php echo $_checkbox_AGB_s_HiermitakzeptiereichdieAGB_svonSupermoto4fun; ?> /><label for="HiermitakzeptiereichdieAGB_svonSupermoto4fun">Hiermit akzeptiere ich die AGB´s von Supermoto4fun</label>
</div> <br style="clear: both;" />
<div style="text-align: center; margin: 5px;">
   <input type="submit" value="Absenden" />
</div>
<p style="text-align: center; margin: 0px;"><a style="color: #aaa; font-size: 10px;" href="http://www.4webmaster.net/" title="Webmaster Tools, Scripte, Tutorials, Formulargenerator">Formulargenerator by 4Webmaster.net</a></p></div>
</fieldset>
</form>
<?php
} else {
   $body = '';
   $body .= 'Veranstaltung: '.htmlspecialchars(!empty($_POST['Veranstaltung']) ? $_POST['Veranstaltung'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Vorname: '.htmlspecialchars(!empty($_POST['Vorname']) ? $_POST['Vorname'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Nachname: '.htmlspecialchars(!empty($_POST['Nachname']) ? $_POST['Nachname'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Strasse_Hausnummer: '.htmlspecialchars(!empty($_POST['Strasse_Hausnummer']) ? $_POST['Strasse_Hausnummer'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'PLZ_Ort: '.htmlspecialchars(!empty($_POST['PLZ_Ort']) ? $_POST['PLZ_Ort'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Geburtsdatum: '.htmlspecialchars(!empty($_POST['Geburtsdatum']) ? $_POST['Geburtsdatum'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Telefon: '.htmlspecialchars(!empty($_POST['Telefon']) ? $_POST['Telefon'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Email: '.htmlspecialchars(!empty($_POST['Email']) ? $_POST['Email'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Ausruestung: ';
   if(!empty($_POST['Ausruestung'])) {
      foreach ($_POST['Ausruestung'] as $value) {
         $body .= htmlspecialchars($value, ENT_QUOTES, 'iso-8859-15').', ';
      }
   }
   $body .= '<br>';
   $body .= 'Gruppeneinteilung: '.htmlspecialchars(!empty($_POST['Gruppeneinteilung']) ? $_POST['Gruppeneinteilung'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Besonderes: '.htmlspecialchars(!empty($_POST['Besonderes']) ? $_POST['Besonderes'] : '', ENT_QUOTES, 'iso-8859-15').'<br>';
   $body .= 'Bezahlung: ';
   if(!empty($_POST['Bezahlung'])) {
      foreach ($_POST['Bezahlung'] as $value) {
         $body .= htmlspecialchars($value, ENT_QUOTES, 'iso-8859-15').', ';
      }
   }
   $body .= '<br>';
   $body .= 'AGB_s: ';
   if(!empty($_POST['AGB_s'])) {
      foreach ($_POST['AGB_s'] as $value) {
         $body .= htmlspecialchars($value, ENT_QUOTES, 'iso-8859-15').', ';
      }
   }
   $body .= '<br>';
   if(send_email('Kontaktformular', $body, $receiver)) {
      ?>
      <h1>Kontaktformular</h1>
      <p>Vielen Dank für Ihre Nachricht.</p>
      <?
   } else {
      ?>
      <h1>Kontaktformular</h1>
      <p>Das Formular konnte leider nicht abgesendet werden. Bitte versuchen Sie es später noch einmal.</p>
      <?
   }
}
?></body>
</html>
Geändert von mango22002 am 29.12.11 um 16:52 Uhr
aamm#2
Benutzerbild von aamm
Beiträge: 129
Registriert: Jun 2010

29.12.2011, 19:40