Learning Hub

Admin Login

Welcome to Your Learning Hub

Latest Articles

query("SELECT * FROM articles WHERE category='General' ORDER BY created_at DESC LIMIT 3"); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { echo "
"; echo "

" . htmlspecialchars($row['title']) . "

"; echo "

" . htmlspecialchars(substr($row['content'], 0, 100)) . "...

"; echo "
"; } } else { echo "

No articles available.

"; } ?>

Internship Updates

query("SELECT * FROM internships ORDER BY created_at DESC LIMIT 3"); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { echo "
"; echo "

" . htmlspecialchars($row['title']) . "

"; echo "

Company: " . htmlspecialchars($row['company']) . " | Deadline: " . htmlspecialchars($row['deadline']) . "

"; echo "
"; } } else { echo "

No internship updates available.

"; } ?>