Welcome, !
My Enrolled Skills
You are not enrolled in any skills yet. Explore the skills below to get started!
prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$userId]); $user = $stmt->fetch(PDO::FETCH_ASSOC); if (!$user) { session_destroy(); header("Location: login.php"); exit; } // Fetch all skills $skills_by_category = []; $stmt = db()->query("SELECT * FROM skills ORDER BY category, title"); $all_skills = $stmt->fetchAll(PDO::FETCH_ASSOC); foreach ($all_skills as $skill) { $skills_by_category[$skill['category']][] = $skill; } // Hardcoded enrolled skills for now $enrolled_skills = [ ['title' => 'Introduction to Python', 'progress' => 60, 'thumbnail' => 'assets/images/python.png'], ['title' => 'Web Development Basics', 'progress' => 25, 'thumbnail' => 'assets/images/webdev.png'], ]; ?>
You are not enrolled in any skills yet. Explore the skills below to get started!