getConnection(); $stmt = $db->prepare('SELECT id FROM format_types WHERE name = ? LIMIT 1'); $stmt->execute(['Site web']); $websiteFormatId = $stmt->fetchColumn(); if (!$websiteFormatId) { echo ''; exit; } $selectedFormats = isset($_POST['formats']) && is_array($_POST['formats']) ? array_map('intval', $_POST['formats']) : []; if (!in_array((int)$websiteFormatId, $selectedFormats, true)) { echo ''; exit; } $websiteUrl = htmlspecialchars($_POST['website_url'] ?? ''); $websiteLabel = htmlspecialchars($_POST['website_label'] ?? ''); ?>
Site web
Si le TFE est un site web, entrez son URL ici. Il sera affiché comme un site embarqué sur la page du TFE.