Initial commit from online.
This commit is contained in:
43
admin/inhalte/kal/saison/add.php
Normal file
43
admin/inhalte/kal/saison/add.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<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<65>hrt werden: '.$stmt1->error);
|
||||
}
|
||||
echo '<a href="index.php?section=kal&t=saison">Zur<75>ck zur <20>bersicht</a>';
|
||||
}
|
||||
|
||||
?>
|
||||
13
admin/inhalte/kal/saison/del.php
Normal file
13
admin/inhalte/kal/saison/del.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
$sql2 = 'DELETE FROM Saison WHERE ID = "'.$_POST['Titel'].'"';
|
||||
$result2 = $db->query($sql2);
|
||||
if ($result2) {
|
||||
echo "<p>Datenbankeintrag gelöscht</p>\n";
|
||||
} else {
|
||||
echo "Fehler beim Löschen";
|
||||
}
|
||||
echo '<a href="index.php?section=kal&t=saison">Zurück zur Übersicht</a>';
|
||||
|
||||
|
||||
?>
|
||||
51
admin/inhalte/kal/saison/edit.php
Normal file
51
admin/inhalte/kal/saison/edit.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<h3>Zeitraum Ändern</h3>
|
||||
|
||||
<?php
|
||||
if (!isset($_POST['Speichern'])) {
|
||||
$sql2 = "SELECT Typ FROM Saison_Typ ORDER BY ID";
|
||||
$result2 = $db->query($sql2);
|
||||
$sql3 = 'SELECT * FROM Saison WHERE ID = "'.$_POST['Titel'].'"';
|
||||
$result3 = $db->query($sql3);
|
||||
$nt3 = $result3->fetch_assoc();
|
||||
?>
|
||||
|
||||
<form action="index.php?section=kal&t=saison" method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="edit" value="speichern" />
|
||||
<input type="hidden" name="ID" value="<?php echo $_POST['Titel']; ?>" />
|
||||
<label>Von (YYYY-MM-TT):</label>
|
||||
<input type="text" name="Von" value="<?php echo $nt3['Von']; ?>" />
|
||||
<br />
|
||||
<label>Bis (YYYY-MM-TT):</label>
|
||||
<input type="text" name="Bis" value="<?php echo $nt3['Bis']; ?>"/>
|
||||
<br />
|
||||
<label>Saisontyp:</label>
|
||||
<select name="Typ">
|
||||
<?php
|
||||
while ($nt2 = $result2->fetch_assoc()) {
|
||||
if ($nt3['Typ'] == $nt2['Typ']) {
|
||||
echo "<option selected=\"selected\">".$nt2['Typ']."</option>";
|
||||
} else {
|
||||
echo "<option>".$nt2['Typ']."</option>";
|
||||
}
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<br />
|
||||
<input type="submit" name="Speichern" value="Speichern" />
|
||||
</form>
|
||||
|
||||
<?php
|
||||
}
|
||||
else {
|
||||
$sql1 = 'UPDATE Saison SET Von = "'.$_POST['Von'].'", Bis = "'.$_POST['Bis'].'", Typ = "'.$_POST['Typ'].'" WHERE ID = "'.$_POST['ID'].'";';
|
||||
$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>';
|
||||
}
|
||||
|
||||
?>
|
||||
34
admin/inhalte/kal/saison/standard.php
Normal file
34
admin/inhalte/kal/saison/standard.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<h2>Saisonverlauf</h2>
|
||||
|
||||
<?php
|
||||
$sql1 = 'SELECT * FROM Saison';
|
||||
$result1 = $db->query($sql1);
|
||||
?>
|
||||
<fieldset>
|
||||
<form action="index.php?section=kal&t=saison" method="post">
|
||||
<fieldset>
|
||||
<legend>neuen Zeitraum erstellen</legend>
|
||||
<input type="submit" name="add" value="Erstellen" />
|
||||
<br />
|
||||
</fieldset>
|
||||
<br />
|
||||
<select name="Titel">
|
||||
<?php
|
||||
while ($nt1 = $result1->fetch_assoc()) {
|
||||
echo '<option value="'.$nt1['ID'].'">'.$nt1['Von'].' '.$nt1['Bis'].' '.$nt1['Typ'].'</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<br />
|
||||
<fieldset>
|
||||
<legend>Zeitraum bearbeiten</legend>
|
||||
<input type="submit" name="edit" value="Bearbeiten" />
|
||||
<br />
|
||||
</fieldset>
|
||||
<br />
|
||||
<fieldset>
|
||||
<legend>Zeitraum löschen</legend>
|
||||
<input type="submit" name="del" value="L<>schen" />
|
||||
<br />
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
Reference in New Issue
Block a user