我不知道为什么,但是每个变量的索引都未定义
我的代码:
if (isset($_POST['senden'])) {
$titel = strip_tags($_POST['titel']);
$persölicher_text = strip_tags($_POST['persönlicher_text']);
$leistung_text = strip_tags($_POST['leistung_text']);
$leistung_warenbezugsort = strip_tags($_POST['leistung_warenbezugsort']);
$leistung_kosten = strip_tags($_POST['leistung_kosten']);
$titel = mysqli_real_escape_string($db, $titel);
$persönlicher_text = mysqli_real_escape_string($db, $persönlicher_text);
$leistung_text = mysqli_real_escape_string($db, $leistung_text);
$leistung_warenbezugsort = mysqli_real_escape_string($db, $leistung_warenbezugsort);
$leistung_kosten = mysqli_real_escape_string($db, $leistung_kosten);
$sql = " INSERT INTO beitrag (titel, persönlicher_text) VALUES('$titel', '$persönlicher_text')";
$sql = "INSERT INTO leistungen (leistung_text, leistung_warenbezugsort, leistung_kosten) VALUES ('$leistung_text', '$leistung_warenbezugsort', $leistung_kosten)";
if ($titel == "" || $persönlicher_text == "" || $leistung_text = "" || $leistung_warenbezugsort = "" || $leistung_kosten = "") {
echo "Bitte Beitrag vervollständigen";
return;
}
mysqli_query($db, $sql);
header ("Location: beitraege.php");
}
<form action="neuer_beitrag.php" method="post"
<div class="titeltextbox">
<div class="form-group col-xs-3">
<label for="inputName">Titel</label>
<input class="form-control" type="text" id="inputName" name ="titel"
placeholder="Geben Sie den Titel an" />
</div>
</div>
<div class="row1">
<!-- js für Row-Tabelle -->
<script src="js/row.js"></script>
<table id="myTable" class=" table order-list">
<thead>
<tr>
<td>Leistung</td>
<td>Bezugsort</td>
<td>Kosten</td>
</tr>
</thead>
<tbody>
<tr>
<td class="col-sm-4">
<input type="text" name="leistung_text" class="form-control" />
</td>
<td class="col-sm-4">
<input type="mail" name="leistung_bezugsort" class="form-control"/>
</td>
<td class="col-sm-3">
<input type="text" name="leistung_kosten" class="form-control"/>
</td>
<td class="col-sm-2"><a class="deleteRow"></a>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="5" style="text-align: left;">
<input type="button" class="btn btn-lg btn-block " id="addrow" value="Reihe hinzufügen" />
</td>
</tr>
<tr>
</tr>
</tfoot>
</table>
</div>
<div class="textbox">
<label for="comment">Comment:</label>
<script>
function countChar(val) {
var len = val.value.length;
if (len >= 1000) {
val.value = val.value.substring(0, 1000);
} else {
$('#charNum').text(len);
}
};
</script>
<textarea class = "form-control" id="comment" rows="5" onkeyup="countChar(this)" name ="persönlicher_text"></textarea>
<div id="charNum"></div>
<input name ="senden" type="submit" value="senden">
</div>
</div>
</form>
错误:
注意:未定义的索引:第14行的D:\ xampp \ htdocs \ c_tarraps \ row \ neuer_beitrag.php中的persnlicher_text
注意:未定义索引:第16行的D:\ xampp \ htdocs \ c_tarraps \ row \ neuer_beitrag.php中的leistung_warenbezugsort
注意:未定义的变量:第20行的D:\ xampp \ htdocs \ c_tarraps \ row \ neuer_beitrag.php中的persnlicher_text Bitte Beitragvervollst�ndigen