Tron: 404:FILE NOT FOUN(T/D) (komplexe Frage...)

Beitrag lesen

hi,
wie immer eine schwirige Frage:

aaaalllso:

Ich habe ein Formular geschrieben, dass per Include in eine Tabelle eingefügt wird, und in sich selber auch gleich das verarbeitungsscript birgt:
Nur das problem ist, ich ahbe alle Angaben überprüft im Form Tag und trotzdem bekomme ich immer die Angabe "404:File not found"...

HIer mal die Form Tags:
<form method="post" action="includes/anmeldung.php">
<input type="submit" value="Registrierung Abschicken"> <input type="reset" value="Formular zurücksetzen">
</form>

Die Dateien:
[Link=http://www.ich-lerne-noch.de/includes/anmeldung.php]
[Link=http://www.ich-lerne-noch.de/index.php] << In das ist es eingebungden unter Anmeden.

Und nochmal für tüftler fals das Problem woanders liegt hier der ganze Quelltext:

<?php
if(!$_POST) {
?>
<center>
<table border="0" width="100%" height="100%">
<tr>
<th valign="top" align="center">
<br><br>
<table border="1" style="border-collapse:collapse" bordercolor="#AAAAAA" width="98%">
<tr height="20" bgcolor="#EBEBEB">
<th align="center"><b>Anmelden</b></th>
</tr>
<tr height="100">
<th align="center" bgcolor="#F5F5F5" valign="center">
<table border="0" width="98%" height="100%">
<tr><td align="left" valign="top" class="top">
<form method="post" action="includes/anmeldung.php">

<center>
<table border="0" width="80%" height="100%">
<tr><th width="50%" align="left">Username:</th><th width="50%" align="left"><input type="text" name="username"></th></tr>
<tr><th width="50%" align="left">Passwort:</th><th width="50%" align="left"><input type="password" name="password"></th></tr>
<tr><th width="50%" align="left">Passwort bestätigen:</th><th width="50%" align="left"><input type="password" name="password2"></th></tr>
<tr><th width="50%" align="left">eMail:</th><th width="50%" align="left"><input type="text" name="email"></th></tr>
<tr><th width="50%" align="left">Geschlecht:</th><th width="50%" align="left">
<select name="gender">
<option>Bitte auswählen:</option>
<option>Männlich</option>
<option>Weiblich</option>
</select>
</th></tr>
<tr><th width="50%" align="left">ICQ Adresse:</th><th width="50%" align="left"><input type="text" name="icq"></th></tr>
<tr><th width="50%" align="left">AIM Adresse:</th><th width="50%" align="left"><input type="text" name="aim"></th></tr>
<tr><th width="50%" align="left">MSN Adresse:</th><th width="50%" align="left"><input type="text" name="msn"></th></tr>
<tr><th width="50%" align="left">Homepage:</th><th width="50%" align="left"><input type="text" name="hp"></th></tr>
<tr><th width="50%" align="left">Geburtsdatum:<i>(z.b.: 01.Januar 2003)</i></th><th width="50%" align="left"><input type="text" size="2" maxlength="2" name="gebday">
<select name="gebmon">
<option selected><i>Bitte auswählen:</i></option>
<option>Januar</option>
<option>Februar</option>
<option>März</option>
<option>April</option>
<option>Mai</option>
<option>Juni</option>
<option>Juli</option>
<option>August</option>
<option>September</option>
<option>Oktobier</option>
<option>November</option>
<option>Dezember</option>
</select>
<input type="text" size="4" name="gebyear" maxlength="4">
</th></tr>
<tr><th width="50%" align="left">Wohnort:</th><th width="50%" align="left"><input type="text" name="ort"></th></tr>
<tr><th width="50%" align="left">Beruf:</th><th width="50%" align="left"><input type="text" name="work"></th></tr>
<tr><th width="50%" align="left">Interessen:</th><th width="50%" align="left"><input type="text" name="interessen"></th></tr>
<tr><th width="50%" align="left">Motto:</th><th width="50%" align="left"><input type="text" name="motto"></th></tr>
<tr><th width="50%" align="left">eMail-Adresse anderen Usern zeigen?</th><th width="50%" align="left">
<select name="emailshow">
<option selected>Ja</option>
<option>Nein</option>
</select>
</th></tr>
<tr><th width="50%" align="left">Bei Rückkehr automatisch einloggen?</th><th width="50%" align="left">
<select name="autologin">
<option selected>Ja</option>
<option>Nein</option>
</select>
</th></tr>
</table>
<input type="submit" value="Registrierung Abschicken"> <input type="reset" value="Formular zurücksetzen"></center>

</form>
</th></tr>
</table>
</th>
</tr>
</table>
</th>
</tr>
<tr height="20"><th align="center">&copy 2003 by Olaf Rühenbeck</th></tr>
</table>
</center>
<?php
}
else {
$username = $_POST["username"];
$password = $_POST["password"];
$password2 = $_POST["password2"];
$email = $_POST["email"];
$gender = $_POST["gender"];
$icq = $_POST["icq"];
$aim = $_POST["aim"];
$msn = $_POST["msn"];
$hp = $_POST["hp"];
$gebday = $_POST["gebday"];
$gebmon = $_POST["gebmon"];
$gebyear = $_POST["gebyear"];
$ort = $_POST["ort"];
$work = $_POST["work"];
$interessen = $_POST["interessen"];
$motto = $_POST["motto"];
$emailshow = $_POST["emailshow"];
$autologin = $_post["autologin"];
include('connect.inc.php');
if($autologin = "Ja") { $autologin = 1; }
if($autologin = "Nein") { $autologin = 0; }
if($emailshow = "Ja") { $emailshow = 1; }
if($emailshow = "Nein") { $emailshow = 0; }
if($gender = "Männlich") { $gender = 0; }
if($gender = "Weiblich") { $gender = 1; }
$get = mysql_query("select * from user_table where user='".$username."'");
if($get) {
$feld = "Username";
}
if($password != $password2) { $feld = "Passwort";}
if(!isset($email)) { $feld = "eMail"; }
if($gender = "Bitte auswählen:") { $feld = "Geschlecht"; }
if(isset($feld)) { header("Location:index.php?showid=14&feld=$feld"); }
else {
$insert = mysql_query("insert into user_table values('','".$username."','".$password."','".$email."','2','".$today."','".$today."','".$motto."','".$icq."','".$msn."','".$aim."','".$hp."','".$gebday."','".$gebmon."',,'".$gebyear."','0','".$interessen."','".$ort."','".$work."','".$gender."','".$emailshow."','".$autologin."','1')");
}
}
?>