Files
homepage/admin/inhalte/kal/saison/add.php

40 lines
1.3 KiB
PHP

<h3>Neuen Zeitraum hinzufügen</h3>
<?php
if (!isset($_POST['Speichern'])) {
$sql2 = "SELECT Typ FROM Saison_Typ ORDER BY ID";
$result2 = $db->query($sql2);
?>
<form action="index.php?section=kal&t=saison" method="post" enctype="multipart/form-data">
<input type="hidden" name="add" value="speichern"/>
<label>Von (YYYY-MM-TT):</label>
<input type="text" name="Von"/>
<br/>
<label>Bis (YYYY-MM-TT):</label>
<input type="text" name="Bis"/>
<br/>
<label>Saisontyp:</label>
<select name="Typ">
<?php
while ($nt2 = $result2->fetch_assoc()) {
echo "<option>" . $nt2['Typ'] . "</option>";
}
?>
</select>
<br/>
<input type="submit" name="Speichern" value="Speichern"/>
</form>
<?php
} else {
$sql1 = 'INSERT INTO Saison (ID, Von, Bis, Typ) VALUES (NULL, "' . $_POST['Von'] . '", "' . $_POST['Bis'] . '", "' . $_POST['Typ'] . '");';
$stmt1 = $db->prepare($sql1);
if (!$stmt1) {
die ('Es konnte kein SQL-Query vorbereitet werden: ' . $db->error);
}
if (!$stmt1->execute()) {
die ('Query konnte nicht ausgeführt werden: ' . $stmt1->error);
}
echo '<a href="index.php?section=kal&t=saison">Zurück zur Übersicht</a>';
}