Extended_Student_Record_Management_System
Extended_Student_Record_Management_System
(SRMS)
Submitted by:
[Your Name]
**Functional Requirements:**
- Student Registration
- Course Management
- Academic Record Management
- Attendance Tracking
**Non-Functional Requirements:**
- Security (Data encryption, authentication)
- Performance (Efficient query execution)
- Scalability (Handling large numbers of student records)

Chapter 5: Implementation
<?php
session_start();
include('db_connection.php');
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$email = $_POST['email'];
$password = md5($_POST['password']);
if (mysqli_num_rows($result) == 1) {
$_SESSION['user'] = $email;
header("Location: dashboard.php");
} else {
echo "Invalid Credentials";
}
}
?>