Guten Tag,
Ich hab ein Problem.
Undzwar code ich derzeit mit einem Freund an einer Homepage.
Nun gibt es halt ein Formular in einem Modal und der Submit Button reagiert nicht..
Hier die Codes:
PHP
<?php
date_default_timezone_set("Europe/Berlin");
$id = $_POST["id"];
$gefahren = $_POST["gefahren"];
$besatzung = $_POST["besatzung"];
$schaden = $_POST["schaden"];
$fahrzeug = $_POST["fahrzeug"];
if (strlen("$_POST[fahrtenbuch]")) {
$eintrag = "INSERT INTO fahrtenbuch (id, gefahren, besatzung, schaden, fahrzeug) VALUES ('$id', '$gefahren', '$besatzung', '$schaden', '$fahrzeug')";
$eintragen = mysql_query($eintrag);
}
?>
Alles anzeigen
PHP
<form class="form-horizontal" name="fahrtenbuch" method="post" action="">
<fieldset>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Einsatz Nr.</label>
<div class="col-lg-10">
<input class="form-control" name="id" id="focusedInput" type="text">
</div>
</div>
<br>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Gefahrene Kilometer</label>
<div class="col-lg-10">
<input class="form-control" name="gefahren" id="focusedInput" type="text">
</div>
</div>
<br>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Besatzung</label>
<div class="col-lg-10">
<input class="form-control" name="besatzung" id="focusedInput" type="text">
</div>
</div>
<br>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Schäden</label>
<div class="col-lg-10">
<input class="form-control" name="schaden" id="focusedInput" type="text">
</div>
</div>
<br>
<div class="form-group">
<label for="select" class="col-lg-2 control-label">Fahrzeug</label>
<div class="col-lg-10">
<select class="form-control" name="fahrzeug" id="select">
<option>FL RS 1/10-1</option>
<option>FL RS 1/10-2</option>
<option>FL RS 1/11-1</option>
<option>FL RS 1/46-1</option>
<option>FL RS 1/33-1</option>
<option>FL RS 1/33-1</option>
<option>FL RS 1/24-1</option>
<option>FL RS 1/49-1</option>
<option>FL RS 1/52-1</option>
<option>FL RS 1/50-1</option>
<option>FL RS 1/65-1</option>
<option>FL RS 1/19-1</option>
</select>
<br>
</div>
</div>
</fieldset>
</form>
</div>
<div class="modal-footer">
<p><input type="submit" name="fahrtenbuch"/></p>
</div>
Alles anzeigen
Gearbeitet wurde mit Bootswatch (Flatly)
Der Submit button reagiert nicht und gibt auch keine Einträge in die Datenbank.
Bitte um Hilfe
lg,