EDIT: Hat sich erledigt trotzdem DankeHi all!
Ich hoffe hier die Erlösung zu finden... schaffs einfach nicht *heul*
Mein Formular soll Checkboxen haben, einmal für die Anrede und einmal um ein Produkt auszuwählen:
Html:
Anrede:
<label for="anrede" class="float"><strong>Anrede:</strong></label><br />
<input type="Radio" name="anrede" value="Herr"> Herr <input type="Radio" name="Anrede" value="Frau"> Frau
Angebot:
<label for="option1"><input class="choose" name="option[]" id="option1" type="checkbox" value="1" /> Angebot 1</label><br />
<label for="option2"><input class="choose" name="option[]" id="option2" type="checkbox" value="2" /> Angebot 2</label><br />
<label for="option3"><input class="choose" name="option[]" id="option3" type="checkbox" value="3" /> Angebot 3</label><br />
PHP Auswertung:
$checkbox = Trim(stripslashes($_GET['checkbox']));
$anrede = Trim(stripslashes($_GET['anrede']));
$titel = Trim(stripslashes($_POST['titel']));
$vorname = Trim(stripslashes($_POST['vorname']));
$name = Trim(stripslashes($_POST['name']));
usw.
Für E-mail:
$Body = "";
$Body .= "Angebot: ";
$Body .= $checkbox;
$Body .= "\n";
$Body .= "Anrede: ";
$Body .= $anrede;
$Body .= "\n";
$Body .= "Titel: ";
$Body .= $titel;
$Body .= "\n";
$Body .= "Vorname: ";
$Body .= $vorname;
$Body .= "\n";
$Body .= "Name: ";
$Body .= $name;
Bitte entschuldigt diese Noobie-Frage. Ich weiß das DAS für viele hier lächerlich und einfach ist.
Liebe Grüße,
Stefanie