מזהה ליינאפ לא תקין.
'; require_once 'includes/footer.php'; exit; } $lineup_id = intval($_GET['id']); $db = db(); // Fetch lineup details $stmt = $db->prepare("SELECT * FROM lineups WHERE id = ?"); $stmt->execute([$lineup_id]); $lineup = $stmt->fetch(PDO::FETCH_ASSOC); if (!$lineup) { echo '
הליינאפ לא נמצא.
'; require_once 'includes/footer.php'; exit; } // Fetch songs for this lineup (to be implemented) $songs_stmt = $db->prepare(" SELECT s.* FROM songs s JOIN lineup_songs ls ON s.id = ls.song_id WHERE ls.lineup_id = ? ORDER BY ls.song_order ASC "); $songs_stmt->execute([$lineup_id]); $songs = $songs_stmt->fetchAll(PDO::FETCH_ASSOC); ?>

חזרה לרשימת הליינאפים

הוספת שירים

שירים בליינאפ

  • אין עדיין שירים בליינאפ זה.
  • -