Code formatting.

This commit is contained in:
2023-12-28 13:31:44 +01:00
parent b65644f3e0
commit b70cedac3b
84 changed files with 3357 additions and 3280 deletions

View File

@@ -2,42 +2,41 @@
<?php
if (!isset($_POST['Speichern'])) {
$sql2 = "SELECT Typ FROM Saison_Typ ORDER BY ID";
$result2 = $db->query($sql2);
?>
$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>
<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<65>hrt werden: '.$stmt1->error);
}
echo '<a href="index.php?section=kal&t=saison">Zur<75>ck zur <20>bersicht</a>';
<?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<65>hrt werden: ' . $stmt1->error);
}
echo '<a href="index.php?section=kal&t=saison">Zur<75>ck zur <20>bersicht</a>';
}
?>