120){ $thinking_type = "🧠 Deep Thinker"; } else{ $thinking_type = "🚶 Balanced Learner"; } /* SAVE TO DB */ $status = $passed ? 'approved' : 'rejected'; $stmt = $pdo->prepare(" INSERT INTO project_submissions (student_name, student_id, class, topic_id, score, status, thinking_type) VALUES (?,?,?,?,?,?,?) "); $stmt->execute([$name, $roll, $class, $topic_id, $score, $status, $thinking_type]); /* RESULT UI */ if($passed){ echo "

✅ Project Approved 🎉

$thinking_type

You solved this in ".round($time_taken)." seconds

🏆 View Leaderboard
"; }else{ echo "

❌ Improve your logic

$thinking_type

Try again. You spent ".round($time_taken)." seconds

"; } ?>