A student management system that can be used by a college or university to manage students, courses, and departments.
In this php project, i create a student management application that can be used to manage a college or university or just any institution. The application so far has a complete admin section with a student section coming soon. The admin can do a variety of things as he traverses the application. His abilities are:
The student section will be implemented later with features such as viewing units and school details…
admin
- This directory contains admin pages and utilities only specific to adminajaxfiles
- This file folder contains php files where ajax requests are sent for processing
public
- This folder contains shared or common resources between the admin and user
test
- This contains css and js file that dictates how all the pages are rendered. They contain the styling and working of the sidebar navigationPHP
- This was used as the main language for development of this application and it generally dictates the page renderingXAMMP
- This was used as a local server since PHP can’t interprated by the normal browserSQL
- SQL was used as a database query language to communicate and retrive infomation from the databasephpmyadmin
- This is the application that holds the database used in the project. The database name used for this applications is sms
.Ajax
- this is a Javascript library that has been used for sending asynchronous requests to php servers and returning the response.Bootstrap
- This was generally used for responsive web development and web page styling. Javascript
- This was used to make the user side of the application dynamic.The admin has to login to access the dashboard page. To login, username = alpha
, password = alpha
After login, the page directs to dashboard.php where the admin can do a number of series. The sidebar menu can be toggled to have different views. Each item on the sidebar menu redirects to a different page within the application. The courses, units and departments can be viewed per school or as a whole. When viewed per school, the school has to be selected; a request is then sent to the correct backend page in the ajaxfiles directory. A response is then sent back and the appropriate div is populated with the response of the request.
For the add unit page, the admin first selects the school where the unit will belong. Once school is selected, the course select tag is populated with courses related to the selected school. The admin can the go on to enter other information about the unit and submit it.
Finally, when all is done, the admin can logout from the application.
Before you use the application, it is advisable that you install a local server, preferably XAMMP or WAMMP.
After installing the necessary server, go to admin folder, then tables.sql and run the sql code to get the database and tables ready for use by the application. Next, you can open the code in a browser and see how the application works.
Feel free to make any changes to any part of the application as you wish.
You can clone the repository at https://github.com/ealpha072/student-management-system.git