mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
|
<?php
|
||
|
|
||
|
require __DIR__ . '/_application.php';
|
||
|
|
||
|
$meldungen = [];
|
||
|
|
||
|
if (!isset($_GET['id'])) {
|
||
|
$meldungen[] = 'Bitte geben Sie die ID des Liedes an, das Sie bearbeiten möchten.';
|
||
|
}
|
||
|
|
||
|
$db = holeDatenbankVerbindung();
|
||
|
$liedStatement = $db
|
||
|
->prepare("
|
||
|
SELECT
|
||
|
l.track,
|
||
|
l.titel,
|
||
|
c.id cd_id,
|
||
|
c.name cdname,
|
||
|
k.name kuenstlername
|
||
|
FROM lieder l
|
||
|
LEFT JOIN cds c ON l.cd_id = c.id
|
||
|
LEFT JOIN kuenstler k ON c.kuenstler_id = k.id
|
||
|
WHERE l.id = :lied_id
|
||
|
");
|
||
|
$liedStatement->execute(['lied_id' => $_GET['id']]);
|
||
|
$lied = $liedStatement->fetch(PDO::FETCH_ASSOC);
|
||
|
if (!$lied) {
|
||
|
$meldungen[] = 'Es konnte kein Lied mit der ID ' . htmlspecialchars($_GET['id']) . ' gefunden werden.';
|
||
|
}
|
||
|
|
||
|
if (isset($_POST['aktion'])) {
|
||
|
if ('speichern' === $_POST['aktion']) {
|
||
|
$db
|
||
|
->prepare("UPDATE lieder SET track = :track, titel = :titel WHERE id = :lied_id")
|
||
|
->execute([
|
||
|
'track' => $_POST['track'],
|
||
|
'titel' => $_POST['titel'],
|
||
|
'lied_id' => $_GET['id']
|
||
|
]);
|
||
|
}
|
||
|
header('Location: cd.php?id=' . htmlspecialchars($lied['cd_id']));
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Mediathek</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<?php if (count($meldungen) > 0): ?>
|
||
|
<p>Fehler:</p>
|
||
|
<ul>
|
||
|
<?php foreach ($meldungen as $meldung): ?>
|
||
|
<li><?= htmlspecialchars($meldung) ?></li>
|
||
|
<?php endforeach; ?>
|
||
|
</ul>
|
||
|
<?php endif; ?>
|
||
|
<form action="lied_bearbeiten.php?id=<?= htmlspecialchars($_GET['id']) ?>" method="post">
|
||
|
<h1>Lied bearbeiten</h1>
|
||
|
<h2>'<?= htmlspecialchars($lied['cdname']) ?>' (<?= htmlspecialchars($lied['kuenstlername']) ?>)</h2>
|
||
|
|
||
|
<label>Track
|
||
|
<input type="text" name="track" value="<?= htmlspecialchars($lied['track']) ?>"/>
|
||
|
</label>
|
||
|
<label>Titel
|
||
|
<input type="text" name="titel" value="<?= htmlspecialchars($lied['titel']) ?>"/>
|
||
|
</label>
|
||
|
<button type="submit" name="aktion" value="speichern">Speichern</button>
|
||
|
<button type="submit" name="aktion" value="abbrechen">Abbrechen</button>
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|