|
|
|
|
|
$data = array ('firma','name','vorname','ort','telefon','email','mitteilung');
$check_array = array ('firma','name','email');
$noe= 0;
if ($_POST['check'])
{
for ($i = 0; $i < sizeof ($check_array); $i++)
{
if ($check_array[$i] == 'email')
{
if (!ereg ("^[_a-zA-Z0-9-]+(\.[_a-zA-z0-9-]+)*@([.a-zA-Z0-9-])+\.([a-zA-Z]{2,3})$",$_POST[$check_array[$i]], $reg))
{
${$check_array[$i]} = '?????';
$noe= 1;
}
else
{
${$check_array[$i]} = $_POST[$check_array[$i]];
}
}
else
{
if (!$_POST[$check_array[$i]])
{
${$check_array[$i]} = '?????';
$noe = 1;
}
else
{
${$check_array[$i]} = $_POST[$check_array[$i]];
}
}
}
}
$form = '';
if (!$_POST['check'] || $noe)
{
echo $form;
}
else
{
$thanks .= '
Vielen Dank für Ihre Anfrage, wir werden uns schnellstmöglich mit Ihnen in Verbindung setzen |
|
Ihre Angaben: | ';
$message = 'Workshop "Was müssen moderne BDE / MDE Lösungen heute leisten"'."\n";
$message .= 'Kundenangaben'."\n";
for ($i = 0; $i < sizeof($info); $i++)
{
if ($_POST[$info[$i][0]])
{
$thanks .= ' | ';
$thanks .= ''.$info[$i][1].' | ';
$thanks .= ''.$_POST[$info[$i][0]].' | ';
$message .= $_POST[$info[$i][0]]."\t\t".$info[$i][1]."\n";
}
}
$thanks .= ' | ';
for ($i = 0; $i < sizeof($data); $i++)
{
if ($_POST[$data[$i]])
{
$thanks .= ' | ';
if ($data[$i] == 'email')
{
$thanks .= 'E-Mail | ';
$thanks .= ''.$_POST[$data[$i]].' | ';
$message .= 'E-Mail'."\t\t".$_POST[$data[$i]]."\n";
}
else if ($data[$i] != 'ort')
{
$thanks .= ''.ucfirst($data[$i]).' | ';
$thanks .= '';
if ($data[$i] == 'mitteilung')
{
$_POST[$data[$i]] = ereg_replace ("\n",' ',$_POST[$data[$i]]);
$_POST[$data[$i]] = ereg_replace ("\r",' ',$_POST[$data[$i]]);
$thanks .= $_POST[$data[$i]];
$message .= ucfirst($data[$i])."\t\t".$_POST[$data[$i]]."\n";
}
else
{
$thanks .= $_POST[$data[$i]];
$message .= ucfirst($data[$i])."\t\t\t".$_POST[$data[$i]]."\n";
}
$thanks .= ' | ';
}
}
}
$thanks .= ' ';
echo $thanks.' ';
//$datum = date ("d.m.Y");
//$subject='Kundenanfrage: '.$_POST['firma'].','.$_POST['name'].','.$datum;
$subject = 'Anfrage über Homepage';
$from=$_POST['email'];
$to = "bde@cd-design.de";
mail("$to", "$subject", "$message", "From: $from");
}
?>
|
|