<?php
/*Kontaktdaten
*author: ### <[email protected]>
*link: http://www.tt-otg1902.de
*copyright: 2007 ###
*/
//Sportvereine
//Beliebig erweierbar
// "Verein a",
// "Verein b",
$sportverein = array (
"",
"OTG 1902 Gera",
"Weißenborner SV 1882",
"Lusaner SC 1980",
"TuS Osterburg Weida",
"TSV 1880 Rüdersdorf",
"TSV 1886 Gera-Leumnitz",
"VfL 1990 Gera",
"SV 1861 Liebschwitz",
"SG Braunichswalde",
"SV Hermes Gera",
"SV 1924 Münchenbernsdorf",
"TSV Eisenberg II",
"ThSV Wünschendorf",
"Post SV Gera",
"SV Hermsdorf",
"Geraer Füchse 97",
"SV Traktor Blankenhain",
"TSV 1880 Gera-Zwötzen",
"VfL 1990 Gera BS"
);
$geb_mon = array ("","Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
include_once 'config/general.php';
//Sprach-Datei
include_once 'language/ger_du.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php echo $LANG['TITEL'] ?></title>
<script type="text/javascript">
function FensterOeffnen (Adresse)
{
MeinFenster = window.open(Adresse, "Zweitfenster", "width=900,height=500,left=100,top=100");
MeinFenster.focus();
}
</script>
</head>
<body alink="black" link="black" vlink="black" lang="de">
<h1><?php echo $LANG['TITEL'] ?></h1>
<form action="upload_1.php" method="post" enctype="multipart/form-data">
<table border="0" align="left" width="50%">
<tr>
<td><?php echo $LANG['Vorname'] ?></td>
<td><input type="text" name="vorname" size="28"></input></td>
<td><?php echo $LANG['Nachname'] ?></td>
<td><input type="text" name="nachname" size="28"></input></td>
</tr>
<tr>
<td><?php echo $LANG['verein'] ?></td>
<td>
<?php echo '<select name="sportverein">';
sort($sportverein);
foreach ($sportverein as $key=>$eintrag)
{echo '<option value="'.$key.'">'.$eintrag.'<br>'."\n";}
echo '</select>';?>
</td>
</tr>
<tr>
<td colspan="4"><hr noshade size="1"></td>
</tr>
<tr>
<td><?php echo $LANG['bday'] ?></td>
<td>
<?php echo '<select name="geb_tag" size="1">';
echo ' <option selected="selected"></option>'."\r\n";
$i=1;
for ($i=1;$i<32;$i++){
echo "<option>$i</option>";
}
echo '</select> ';
echo '<select name="geb_mon">';
foreach ($geb_mon as $key=>$eintrag)
{echo '<option value="'.$key.'">'.$eintrag.'<br>'."\n";}
echo '</select> ';
echo '<select name="geb_jahr" size="1">';
echo '<option selected="selected"></option>'."\r\n";
$i=2007;
for ($i=2007;$i>1929;$i--){
echo "<option>$i</option>";
}
echo '</select>';?>
</td>
</tr>
<tr>
<td colspan="4"><hr noshade size="1"></td>
</tr>
<tr>
<td><?php echo $LANG['Strasse'] ?></td>
<td><input type="text" size="28" name="strasse"></input></td>
<td><?php echo $LANG['nr'] ?></td>
<td><input type="text" size="4" name="hausnummer"></input></td>
</tr>
<tr>
<td><?php echo $LANG['plz'] ?></td>
<td><input type="text" maxlength="5" size="5" name="plz"></input></td>
</tr>
<tr>
<td colspan="4"><hr noshade size="1"></td>
</tr>
<tr>
<td><?php echo $LANG['Tel_pr'] ?></td>
<td><input type="text" name="p_vorwahl" value="Vorwahl" size="5"></input>
<input type="text" name="p_durchwahl" value="Durchwahl"></input></td>
<td><?php echo $LANG['Mail_pr'] ?></td>
<td><input type="text" name="p_mail"></input></td>
</tr>
<tr>
<td><?php echo $LANG['Tel_ge'] ?></td>
<td><input type="text" name="g_vorwahl" value="Vorwahl" size="5"></input>
<input type="text" name="g_durchwahl" value="Durchwahl"></input></td>
<td><?php echo $LANG['Mail_ge'] ?></td>
<td><input type="text" name="g_mail"></input></td>
</tr>
<tr>
<td><?php echo $LANG['Fax_pr'] ?></td>
<td><input type="text" name="p_fax" size="30"></input></td>
<td><?php echo $LANG['Fax_ge'] ?></td>
<td><input type="text" name="g_fax"></input></td>
</tr>
<tr>
<td><?php echo $LANG['Homepage'] ?></td>
<td><input type="text" name="homepage" size="30"></input></td>
</tr>
<td><?php echo $LANG['Handy'] ?></td>
<td><input type="text" name="h_vorwahl" value="Vorwahl" size="5"></input>
<input type="text" name="h_durchwahl" value="Durchwahl"></input></td>
</tr>
<tr>
<td><input type="submit" value="<?php echo $LANG['send_to'] ?>"></input></td>
</tr>
<tr>
<td colspan="3"><p style="font-size:12px;"><?php echo $KD_VERSION ?> | <a href='mailto:<?php echo $KD_MAIL ?>' target="_blank" style="text-decoration: none;">
<?php echo $KD_COPY_YEAR ?> <?php echo $LANG['KD_MAIL_NAME'] ?></a>
| <a href="<?php echo $KD_FORUM ?>" target="_blank" style='text-decoration: none;'>Forum</a> |
<a href="<?php echo $LANG['impressum_url'] ?>" style='text-decoration: none;'
onclick="FensterOeffnen(this.href); return false"><?php echo $LANG['impressum'] ?></a></p></td>
</tr>
</table>
</form>
</body>
</html>