prepare("SELECT * FROM webinars WHERE scheduled_at > NOW() ORDER BY scheduled_at ASC LIMIT 1"); $stmt->execute(); $webinar = $stmt->fetch(); } catch (PDOException $e) { // Silently fail for now } $webinar_id = $webinar ? $webinar['id'] : 1; // Fallback to 1 if no webinar is found $webinar_title = $webinar ? $webinar['title'] : 'Professional Vibe-Coding Webinar'; $webinar_date_str = $webinar ? (new DateTime($webinar['scheduled_at']))->format('l, F j \\ • \\ At g.i A T') : 'Monday, November 3 • At 6.00 PM PST'; ?>
Professional Vibe‑Coding: the fastest way to go from an idea to a working app you own, running on your server, with your database, using real frameworks.