This is a basic LMS that allows for teacher and student management,
custom tests, and results logging.
I made this project a while ago and it needs some work but it is functional.
You will need a web server, PHP and MySQL/MariaDB.
- Create a new database and assign a user all permissions for that database.
- Open the login2.php file in a text editor.
- On lines 13-16, enter your database server's hostname, username, password and database name in the appropriate places. For example:
$servername = 'localhost';
$sqlUser = 'lmsUser';
$sqlPass = 'password';
$dbname = 'lms'; - Navigate to the index.php page in your web browser and enter the username
adminand passwordpass. Change your password afterwards!
- Clean up code
- Different question types
- Easier setup
- Lesson creation interface