load(); $db = getDbConnection(); // Get all infomercials with colors for sidebar $infomercials = $db->query(" SELECT id, title, duration, color_code, series_code, upload_status FROM infomercials WHERE upload_status = 'uploaded' ORDER BY title ASC ")->fetchAll(); // Auto-assign colors to infomercials without colors foreach ($infomercials as $infomercial) { if (empty($infomercial['color_code'])) { $stmt = $db->query("SELECT color_code FROM infomercials WHERE color_code IS NOT NULL"); $existingColors = $stmt->fetchAll(PDO::FETCH_COLUMN); $newColor = generateDistinctColor($existingColors); $stmt = $db->prepare("UPDATE infomercials SET color_code = ? WHERE id = ?"); $stmt->execute([$newColor, $infomercial['id']]); } } // Refresh infomercials after color assignment $infomercials = $db->query(" SELECT id, title, duration, color_code, series_code, upload_status FROM infomercials WHERE upload_status = 'uploaded' ORDER BY title ASC ")->fetchAll(); ?>
Laden...
Kleuren worden automatisch toegewezen per infomercial