Welcome to Your Learning Hub
Diploma
10th
12th
B.Tech
M.Tech
Medical
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.
";
}
?>
Diploma Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='Diploma' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
10th Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='10th' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
12th Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='12th' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
B.Tech Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='B.Tech' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
M.Tech Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='M.Tech' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
Medical Dashboard
Syllabus: query("SELECT content, file_path FROM syllabus WHERE category='Medical' LIMIT 1");
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo htmlspecialchars($row['content'] ?: 'No content available');
if ($row['file_path']) {
echo " | Download Syllabus ";
}
} else {
echo 'Not available';
}
?>
Back to Main
© 2025 Priyes Ranjan. All rights reserved.