Beiträge von mobilica

    ich habe den fehler inzwischen entdeckt..... bzw. weiss ich zwar den grund noch nicht, aber zumindest woran es lag....:

    diese scripte waren wohl nicht kompatibel mit der fehlerabfrage....

    <?php

    for($x=1;$x<32;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($bistag == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>

    hallo, habe ein problem: und zwar dass ich nicht sehe wo der fehler liegt, warum das formular nicht überprüft wird... habe 2 verschiedene seiten, beide nahezu identisch - auf fehler ist alles eigentlich geprüft... das eine funktioniert, das andere nicht....
    habe alles mögliche schon ausgetauscht, ersetzt, der grund dass es nicht geht muss hierin liegen (habe nur den bereich hier stehen - und ganz unten das gleiche aus der seite wo es geht)

    was nicht funktioniert ist: bei der einen seite kommt, wenn daten im formular fehlen die fehlermeldungen (error2) nicht angezeigt... was bei der anderen seite einwandfrei geht.... tausche ich das formular aus und die errorabfragen dann gehts (muss also an diesem unten aufgeführten bereich irgendwo ein bug drin sein....)

    wäre klasse wenn hier jemand ahnung hat und vielleicht den fehler auf den ersten blick sieht, dass ich nicht noch weitere 10 stunden vergeblich das durchteste....


    ------------------Hier der ausschnitt aus der seite die nicht geht-----------------

    $error2 = "";

    if (isset($_POST[name])) {

    //-Formualrdaten überprüfen

    $error1 = "ACHTUNG: Formular unvollständig ! Bitte die fehlenden Daten ergänzen:";
    $error3 = "Bitte ergänzen: ";

    if ($_POST[paket] == "Bitte wählen") $error2 .= "Paket,";
    if ($_POST[nachname] == "" ) $error2 .= "Nachname,";
    if ($_POST[vorname] == "") $error2 .= "Vorname,";
    if ($_POST[anrede] == "Bitte wählen") $error2 .= "Anrede,";
    if (($_POST[gebdattag] == "--") || ($_POST[gebdatmonat] == "--") || ($_POST[gebdatjahr] == "--")) $error2 .= "Geburtsdatum,";
    if ($_POST[gebort] == "") $error2 .= "Geburtsort,";
    if ($_POST[staatsan] == "") $error2 .= "Staatsangehörigkeit,";
    if ($_POST[telpriv] == "") $error2 .= "Tel. oder Handy,";
    if ($_POST[handy] == "") $error2 .= "Familienstand,";
    if ($_POST[strasse] == "") $error2 .= "Strasse,";
    if ($_POST[hausnr] == "") $error2 .= "Hausnummer,";
    if ($_POST[plz] == "") $error2 .= "PLZ,";
    if ($_POST[ort] == "") $error2 .= "Ort,";
    if ($_POST[beruf] == "") $error2 .= "Beruf,";
    if ($_POST[passnr] == "") $error2 .= "Passnr.,";
    if ($_POST[amt] == "") $error2 .= "Ausstell-Amt,";
    if (($_POST[passdattag] == "--") || ($_POST[passdatmonat] == "--") || ($_POST[passdatjahr] == "--")) $error2 .= "Ausstell-datum,";
    if (($_POST[bistag] == "--") || ($_POST[bismonat] == "--") || ($_POST[bisjahr] == "--")) $error2 .= "Gültig bis,";
    if ($error2 == "") {
    ...
    ... gekürzt ....
    ...

    <td height="100%" valign="top"><form name="form6" method="POST" action="kreditkarttest.php?id=<?php echo $id ?>">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Paketwahl</font></td>
    <td height="20" colspan="3"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <select name="paket" size="1" id="paket">
    <option value="Bitte wählen" selected <?php if ($anrede == "Bitte wählen") echo "selected"; ?>>Bitte
    wählen
    <option value="Herr" <?php if ($anrede == "Herr") echo "selected"; ?>>Herr
    <option value="Frau" <?php if ($anrede == "Frau") echo "selected"; ?>>Frau
    </select>
    </font></td>
    <td height="20" colspan="2" rowspan="2" align="right"><table width="100%" height="30" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td width="21%"><font color="#333333" size="1" face="Arial, Helvetica, sans-serif">*
    Pflicht</font></td>
    <td width="79%"><div align="right"><font color="#666666" size="5" face="Arial, Helvetica, sans-serif">Jetzt
    bestellen
    </font></div>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td height="8" colspan="4"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Anrede</font></td>
    <td height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <select name="anrede" size="1" id="anrede">
    <option value="Bitte wählen" selected <?php if ($anrede == "Bitte wählen") echo "selected"; ?>>Bitte
    wählen
    <option value="Herr" <?php if ($anrede == "Herr") echo "selected"; ?>>Herr
    <option value="Frau" <?php if ($anrede == "Frau") echo "selected"; ?>>Frau
    </select>
    </font></td>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Vorname,Name</font></td>
    <td height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <input name="vorname" type="text" id="vorname" value="<?php echo $vorname; ?>" size="5" maxlength="30">

    <input name="nachname" type="text" id="nachname" value="<?php echo $nachname; ?>" size="5" maxlength="30">
    </font></td>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Beruf</font></td>
    <td height="20"><font color="#000066">
    <input name="beruf" type="text" id="beruf" value="<?php echo $beruf; ?>" size="15" maxlength="50">
    </font></td>
    </tr>
    <tr>
    <td height="8" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Strasse,Nr.</font></td>
    <td width="140" height="20"><font color="#000066" face="Arial, Helvetica, sans-serif">
    <input name="strasse" type="text" id="strasse" value="<?php echo $strasse; ?>" size="8" maxlength="30">
    <input name="hausnr" type="text" id="hausnr" value="<?php echo $hausnr; ?>" size="2" maxlength="5">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">PLZ,
    Ort</font></td>
    <td width="140" height="20"><font color="#000066" face="Arial, Helvetica, sans-serif">
    <input name="plz" type="text" id="plz" value="<?php echo $plz; ?>" size="2" maxlength="5">
    <input name="ort" type="text" id="ort" value="<?php echo $ort; ?>" size="8" maxlength="30">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Email</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="email" type="text" id="email" value="<?php echo $email; ?>" size="15" maxlength="100">
    </font></td>
    </tr>
    <tr>
    <td height="8" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td height="20" colspan="2"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Geburtsdat.</font><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">
    <select name="gebdattag" class="inputfeld" id="gebdattag">
    <option value="--" selected <?php if ($gebdattag == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<32;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($gebdattag == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    <select name="gebdatmonat" class="inputfeld" id="gebdatmonat">
    <option value="--" selected <?php if ($gebdatmonat == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<13;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($gebdatmonat == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    <select name="gebdatjahr" class="inputfeld" id="gebdatjahr">
    <option value="--" selected <?php if ($gebdatjahr == "--") echo "selected"; ?>>--
    <?php

    for($x=1930;$x<1991; $x++) {

    echo "<option";

    if ($gebdatjahr == $x) echo " selected";

    echo ">".$x."</option>";

    }


    ?>
    </select>
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Geburtsort</font></td>
    <td width="140" height="20"><input name="gebort" type="text" id="gebort" value="<?php echo $gebort; ?>" size="15" maxlength="50">
    </td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Geburtsname</font></td>
    <td width="140" height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <input name="gebname" type="text" id="gebname" value="<?php echo $gebname; ?>" size="15" maxlength="30">
    </font></td>
    </tr>
    <tr>
    <td height="8" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Staatsang.</font></td>
    <td width="140" height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <input name="staatsan" type="text" id="staatsan" value="<?php echo $staatsan; ?>" size="15" maxlength="20">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Telefon</font></td>
    <td width="140" height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <input name="telpriv" type="text" id="telpriv" value="<?php echo $telpriv; ?>" size="15" maxlength="20">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Familienstand</font></td>
    <td width="140" height="20"><font color="#000066" size="2" face="Arial, Helvetica, sans-serif">
    <input name="handy" type="text" id="handy" value="<?php echo $handy; ?>" size="15" maxlength="20">
    </font></td>
    </tr>
    <tr>
    <td height="8" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Ausweisnr.</font></td>
    <td width="140" height="20"><font size="2" face="Arial, Helvetica, sans-serif">
    <input name="passnr" type="text" id="passnr" value="<?php echo $passnr; ?>" size="15">
    </font><font color="#000066"> </font></td>
    <td height="20" colspan="2"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Ausstell.dat.</font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
    <select name="passdattag" class="inputfeld" id="passdattag">
    <option value="--" selected <?php if ($passdattag == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<32;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($passdattag == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    </font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
    <select name="passdatmonat" class="inputfeld" id="passdatmonat">
    <option value="--" selected <?php if ($passdatmonat == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<13;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($passdatmonat == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    <select name="passdatjahr" class="inputfeld" id="passdatjahr">
    <option value="--" selected <?php if ($passdatjahr == "--") echo "selected"; ?>>--
    <?php

    for($x=1990;$x<2009; $x++) {

    echo "<option";

    if ($passdatjahr == $x) echo " selected";

    echo ">".$x."</option>";

    }

    ?>
    </select>
    </font></td>
    <td height="20" colspan="2" valign="middle"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">G&uuml;ltig
    bis</font><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
    <select name="bistag" class="inputfeld" id="bistag">
    <option value="--" selected <?php if ($bistag == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<32;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($bistag == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    <select name="bismonat" class="inputfeld" id="bismonat">
    <option value="--" selected <?php if ($bismonat == "--") echo "selected"; ?>>--
    <?php

    for($x=1;$x<13;$x++) {

    if ($x <= 9) $y = "0".$x; else $y = $x;

    echo "<option";

    if ($bismonat == $y) echo " selected";

    echo ">".$y."</option>";

    }

    ?>
    </select>
    <select name="bisjahr" class="inputfeld" id="bisjahr">
    <option value="--" selected <?php if ($bisjahr == "--") echo "selected"; ?>>--
    <?php

    for($x=2006;$x<2029; $x++) {

    echo "<option";

    if ($bisjahr == $x) echo " selected";

    echo ">".$x."</option>";

    }

    ?>
    </select>
    </font></td>
    </tr>
    <tr>
    <td height="8" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Ausstell-Amt</font></td>
    <td height="20"><font size="2" face="Arial, Helvetica, sans-serif">
    <input name="amt" type="text" id="amt" value="<?php echo $amt; ?>" size="15">
    </font></td>
    <td height="20" colspan="4"><div align="left">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="300"><font color="#333333" size="1" face="Arial, Helvetica, sans-serif">Mit
    Klick auf &quot;Bestellung absenden&quot; best&auml;tigen
    Sie, die AGB vollst&auml;ndig gelesen
    und akzeptiert zu haben.</font></td>
    <td><div align="center"><font color="#000066">
    <input name="vermnr" type="hidden" id="vermnr" value="<?php echo $id ?>" size="22" maxlength="6">
    <input name="Submit" type="submit" id="Submit" value="Bestellung absenden">
    </font></div>
    </td>
    </tr>
    </table>
    </div>
    </td>
    </tr>
    </table>
    </form>


    ------------------Hier der gleiche ausschnitt aus der seite die geht-----------------

    $error2 = "";

    if (isset($_POST[name])) {

    //-Formualrdaten überprüfen

    $error1 = "ACHTUNG: Formular unvollständig ! Bitte die fehlenden Daten ergänzen:";
    $error3 = "Bitte ergänzen: ";

    if ($_POST[name] == "" ) $error2 .= "Nachname,";
    if ($_POST[vorname] == "") $error2 .= "Vorname,";
    if ($_POST[email] == "") $error2 .= "Email,";
    if (($_POST[telpriv] == "") && ($_POST[fax] == "") && ($_POST[handy] == "")) $error2 .= "Tel.-o.Handy,";
    if (($_POST[bundes] == "Bitte wählen") || ($_POST[bundes] == "")) $error2 .= "Bundesland,";
    if ($_POST[strasse] == "") $error2 .= "Strasse,";
    if ($_POST[hausnr] == "") $error2 .= "Hausnummer,";
    if ($_POST[plz] == "") $error2 .= "PLZ,";
    if ($_POST[ort] == "") $error2 .= "Ort,";
    if ($_POST[gebdat] == "") $error2 .= "Geburtsdatum(TT.MM.JJJJ),";
    if ($error2 == "") {
    ...
    ... gekürzt ....
    ...

    <td height="100%" valign="top"><form name="form6" method="POST" action="partner.php?id=<?php echo $id ?>">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Firma</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="firma" type="text" id="firma" value="<?php echo $firma ?>" size="15" maxlength="30">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Vorname,Name*</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="vorname" type="text" id="vorname" value="<?php echo $vorname ?>" size="5" maxlength="30">
    <input name="name" type="text" id="name" value="<?php echo $name ?>" size="5" maxlength="30">
    </font></td>
    <td height="20" colspan="2" rowspan="2" align="right"><table width="100%" height="30" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td width="21%"><font color="#333333" size="1" face="Arial, Helvetica, sans-serif">*
    Pflicht</font></td>
    <td width="79%"><div align="right"><font color="#666666" size="5" face="Arial, Helvetica, sans-serif">Jetzt
    anmelden
    </font></div></td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td height="14" colspan="4"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Strasse,
    Nr. *</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="strasse" type="text" id="strasse2" value="<?php echo $strasse ?>" size="8" maxlength="30">
    <input name="hausnr" type="text" id="hausnr" value="<?php echo $hausnr ?>" size="2" maxlength="5">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">PLZ,
    Ort *</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="plz" type="text" id="plz" value="<?php echo $plz ?>" size="2" maxlength="5">
    <input name="ort" type="text" id="ort2" value="<?php echo $ort ?>" size="8" maxlength="30">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Geburtsdatum
    *</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="gebdat" type="text" id="email3" value="<?php echo $gebdat ?>" size="15" maxlength="10">
    </font></td>
    </tr>
    <tr>
    <td height="14" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Email
    *</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="email" type="text" id="email" value="<?php echo $email ?>" size="15" maxlength="100">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Telefon
    *</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="telpriv" type="text" id="telpriv" value="<?php echo $telpriv ?>" size="15" maxlength="20">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Handy</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="handy" type="text" id="handy" value="<?php echo $handy ?>" size="15" maxlength="20">
    </font></td>
    </tr>
    <tr>
    <td height="14" colspan="6"><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif">
    </font><font color="#FF0000" size="1" face="Arial, Helvetica, sans-serif"></font></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Fax</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="fax" type="text" id="fax" value="<?php echo $fax ?>" size="15" maxlength="20">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Ihre
    Webseite</font></td>
    <td width="140" height="20"><font color="#000066" size="3" face="Arial, Helvetica, sans-serif">
    <input name="www" type="text" id="www2" value="<?php echo $www ?>" size="15" maxlength="255">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Beruf</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="beruf" type="text" id="beruf" value="<?php echo $beruf ?>" size="15" maxlength="50">
    </font></td>
    </tr>
    <tr>
    <td height="14" colspan="6"></td>
    </tr>
    <tr>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Bankinstitut</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="bank" type="text" id="bank" value="<?php echo $bank ?>" size="15" maxlength="30">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Bankleitzahl</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="blz" type="text" id="blz" value="<?php echo $blz ?>" size="15" maxlength="10">
    </font></td>
    <td width="100" height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Kontonummer</font></td>
    <td width="140" height="20"><font color="#000066">
    <input name="konto" type="text" id="konto" value="<?php echo $konto ?>" size="15" maxlength="20">
    </font></td>
    </tr>
    <tr>
    <td height="14" colspan="6"></td>
    </tr>
    <tr>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Kontoinhaber</font></td>
    <td height="20"><font color="#000066">
    <input name="inh" type="text" id="inh2" value="<?php echo $inh ?>" size="15" maxlength="50">
    </font></td>
    <td height="20" colspan="2"><div align="center"><font color="#000066">
    <input name="abc2" type="hidden" id="abc2" value="Vielen Dank f&uuml;r Ihre Anmeldung - die Zugangsdaten sind Ihnen per Email zugegangen" size="22" maxlength="6">
    <input name="vermnr" type="hidden" id="vermnr" value="<?php echo $id ?>" size="22" maxlength="6">
    <input name="Submit" type="submit" id="Submit" value="Anmeldung absenden">
    </font></div></td>
    <td height="20"><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">Bundesland
    *</font></td>
    <td height="20"><font color="#000066">
    <select name="bundes" id="bundes">
    <option value="Bitte w&auml;hlen">Bitte w&auml;hlen
    <option value="Baden-W&uuml;rttemberg">Baden-W&uuml;rtt.
    <option value="Bayern">Bayern
    <option value="Berlin">Berlin
    <option value="Brandenburg">Brandenburg
    <option value="Bremen">Bremen
    <option value="Hamburg">Hamburg
    <option value="Hessen">Hessen
    <option value="Mecklenburg-Vorpommern">Mecklenb.Vorp.
    <option value="Niedersachsen">Niedersachsen
    <option value="Nordrhein-Westfalen">Nordrh.-Westf.
    <option value="Rheinland-Pfalz">Rheinland-Pfalz
    <option value="Saarland">Saarland
    <option value="Sachsen">Sachsen
    <option value="Sachsen-Anhalt">Sachsen-Anhalt
    <option value="Schleswig-Holstein">Schleswig-H.
    <option value="Th&uuml;ringen">Th&uuml;ringen
    <option value="Ausland">Ausland
    </select>
    </font></td>
    </tr>
    </table>
    </form></td>