This project is a Student Database Management System implemented using MongoDB, designed to efficiently manage student information for educational institutions.
- User Authentication: Secure authentication system for administrators and students.
- Student Management: CRUD operations for managing student records.
- Course Management: Add, update, and delete courses.
- Attendance Tracking: Track student attendance for each course.
- Performance Analysis: Generate reports on student performance and attendance.
- Clone the repository:
git clone https://github.com/TanoojSeelam/StudentDatabaseManagementSystem_MongoDB.git
- Install dependencies:
npm install
- Configure MongoDB:
- Install MongoDB if not already installed.
- Start MongoDB server.
- Update
config/db.js
with your MongoDB URI.
- Start the server:
npm start
- Login:
- Use the provided credentials to log in as an administrator or student.
- Admin Dashboard:
- Manage students, courses, and attendance records.
- Generate reports on student performance and attendance.
- Student Dashboard:
- View personal information and enrolled courses.
- Check attendance and grades.
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/your-feature
). - Make your changes.
- Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin feature/your-feature
). - Create a new Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
This extension is developed atop the libmongoc and libbson libraries. It provides a minimal API for core driver functionality: commands, queries, writes, connection management, and BSON serialization.
Userland PHP libraries that depend on this extension may provide higher level APIs, such as query builders, individual command helper methods, and GridFS. Application developers should consider using this extension in conjunction with the MongoDB PHP library, which implements the same higher level APIs found in MongoDB drivers for other languages (as well as the legacy PHP driver).
To build and install the driver:
$ pecl install mongodb
$ echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
Additional installation instructions may be found in the PHP.net documentation.
This extension is intended to be used alongside the
MongoDB PHP Library, which is
distributed as the
mongodb/mongodb
package for
for Composer.
Issues pertaining to the extension should be reported in the PHPC project in MongoDB's JIRA. Library-related issues should be reported in the PHPLIB project.
For general questions and support requests, please use one of MongoDB's Technical Support channels.
If you've identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions in Create a Vulnerability Report.
Development is tracked in the PHPC project in MongoDB's JIRA. Documentation for contributing to this project may be found in CONTRIBUTING.md.