exec($sql); } } catch (PDOException $e) { // In a real app, you'd log this error. // For now, we'll just output a generic error. die("Database migration failed: " . $e->getMessage()); } } // Run migrations run_migrations(); // Fetch tasks $tasks = []; try { $pdo = db(); $stmt = $pdo->query("SELECT * FROM tasks ORDER BY created_at DESC"); $tasks = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (PDOException $e) { echo '