query("SELECT COUNT(*) FROM surveys"); $total_records = $total_stmt->fetchColumn(); $total_pages = ceil($total_records / $records_per_page); // Fetch surveys for the current page $surveys_stmt = db()->prepare("SELECT * FROM surveys ORDER BY created_at DESC LIMIT :limit OFFSET :offset"); $surveys_stmt->bindValue(':limit', $records_per_page, PDO::PARAM_INT); $surveys_stmt->bindValue(':offset', $offset, PDO::PARAM_INT); $surveys_stmt->execute(); $surveys = $surveys_stmt->fetchAll(); $pageTitle = "Available Surveys"; $description = "Choose a survey to provide your feedback."; require_once 'templates/header.php'; ?>

Available Surveys

Please choose one of the surveys below to provide your feedback.

No surveys available at the moment.