├── README.md ├── a_add.php ├── a_change_password.php ├── a_delete.php ├── a_edit.php ├── a_view.php ├── aboutelearning.php ├── admin_home.php ├── assignment.php ├── contactus.php ├── d_add.php ├── d_delete.php ├── d_edit.php ├── d_view.php ├── database └── elearnings.sql ├── dbconnection.php ├── department.php ├── edit_profile.php ├── f_add.php ├── f_change_password.php ├── f_delete.php ├── f_edit.php ├── f_view.php ├── faculty.php ├── faculty_home.php ├── images ├── Ichalkarnji.jpg └── logo_dktes.gif ├── includes ├── admin_main_menu.php ├── assignment_sub_menu.php ├── bottom_line.php ├── department_sub_menu.php ├── faculty_main_menu.php ├── main.css ├── main_menu.php ├── mm_menu.js ├── notice_sub_menu.php ├── student_main_menu.php ├── student_sub_menu.php └── top_line.php ├── index.php ├── mm_menu.js ├── n_add.php ├── n_view.php ├── notice.php ├── s_add.php ├── s_change_password.php ├── s_delete.php ├── s_edit.php ├── s_f_add.php ├── s_f_delete.php ├── s_f_edit.php ├── s_f_view.php ├── s_view.php ├── signin.php ├── signup.php ├── site_map.php ├── student.php ├── student_home.php ├── view_assignment.php └── view_notice.php /README.md: -------------------------------------------------------------------------------- 1 | # E-Learning 2 | It is a basic Learning Management System developed in PHP and MySQL. A student can submit assignments and activities online, posted by the professor. 3 | -------------------------------------------------------------------------------- /a_add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |