Student Information Management System A simple PHP-based web application for managing student information. This application allows users to add, update, and delete student records.
Features Add new student records. Update existing student information. Delete student records. Display a list of all students. Getting Started Clone the repository:
bash Copy code git clone https://github.com/yourusername/student-information-system.git Database Setup:
Create a MySQL database named student_db. Import the student_db.sql file into your database. Configuration:
Update the database connection details in index.php:
php Copy code $servername = "localhost"; $username = "your_username"; $password = "your_password"; $dbname = "student_db"; Run the Application:
Start a local server:
bash Copy code php -S localhost:8000 Open your browser and visit http://localhost:8000.
Usage:
Use the provided forms to add, update, or delete student records. The student list will be displayed below the forms. Contributing Contributions are welcome! Feel free to open issues or pull requests.
License This project is licensed under the MIT License - see the LICENSE file for details.