Files
SAe-PHP-S2/application/views/album_details.php

21 lines
582 B
PHP
Raw Normal View History

2024-06-04 22:46:59 +02:00
<!DOCTYPE html>
<html>
<head>
<title><?= $album->albumName ?> - Details</title>
</head>
<body>
<h1><?= $album->albumName ?></h1>
<p><strong>Artist:</strong> <?= $album->artistName ?></p>
<p><strong>Genre:</strong> <?= $album->genreName ?></p>
<p><strong>Year:</strong> <?= $album->year ?></p>
<img src="<?= base_url('uploads/' . $album->jpeg) ?>" alt="<?= $album->albumName ?> Cover">
<h2>Songs</h2>
<ul>
<?php foreach ($songs as $song): ?>
<li><?= $song->trackName ?></li>
<?php endforeach; ?>
</ul>
</body>
</html>