$id = $_GET['id'] ?? 0;
// Buscar o evento
$stmt = $pdo->prepare("SELECT * FROM site_agenda WHERE id = ? AND status = 'publish'");
$stmt->execute([$id]);
$evento = $stmt->fetch();
if (!$evento) {
header("Location: index.php");
exit;
}
?>
| Agenda Rodrigues da Mabel