├── 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 | E-Learning : Add Assignment 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Add Assignment 33 | 38 |
39 | 40 | 41 | 42 | 55 | 56 | 57 | 58 | 59 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 87 | 88 |
Branch: 43 | 54 |
Class: 60 | 74 |
Subject:
Assignment:
86 |
89 |
90 |
91 | 92 | '; 101 | } 102 | } 103 | mysql_close($con); 104 | ?> 105 | 106 |
107 |
108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /a_change_password.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Change Password 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Change Password 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
User Name:
Old Password:
New Password:
Confirm Password:
61 | '; 83 | break; 84 | } 85 | } 86 | else 87 | { 88 | $f = 1; 89 | } 90 | } 91 | if($f == 1) 92 | { 93 | echo ''; 94 | } 95 | } 96 | else 97 | { 98 | echo ''; 99 | } 100 | } 101 | ?> 102 | 103 |
104 |
105 | 106 |
107 |
108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /a_delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Delete Assignment 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Delete Assignment 33 | 38 |
39 | 40 | 41 | 42 | 43 | 45 | 46 |
User Name : 44 |
47 |
48 |
49 | 50 | '; 71 | break; 72 | } 73 | else 74 | { 75 | $f =0; 76 | } 77 | } 78 | 79 | if($f == 0) 80 | { 81 | echo ''; 82 | } 83 | } 84 | else 85 | { 86 | echo ''; 87 | } 88 | } 89 | mysql_close($con); 90 | ?> 91 | 92 |
93 |
94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /a_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityashirodkar/E-Learning/f61e687130b45cb57a7634056af762e870ad8311/a_edit.php -------------------------------------------------------------------------------- /a_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E - Learning :All Assignment's 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | All Assignment's 33 |
34 |
35 | 36 | '; 41 | echo ''; 42 | while($row = mysql_fetch_array($result)) 43 | { 44 | echo ''; 45 | } 46 | echo '
SubjectBranchclassAssignment
'.$row['subject'] . " ".$row['branch'] . " ".$row['class'] . " " . $row['assignment']. '
'; 47 | ?> 48 | 49 |
50 | 51 |
52 |
53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /aboutelearning.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: About E-Learning 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |
22 | 23 |
24 | Welcome to E-Learning 25 |

This website is for the students of DKTE. Students can view the assignments and notices posted by their teachers. But they have to sign up first. During registration they will be asked for a user anme and a password. They can use that user name and password to view the assignments and notices. They can edit their profile if they want to make changes in future. They will also be able to change their password.

26 |

In case he\she forgets his\her password then he\she can directly contact his\her teacher.

27 |
28 | 29 |
30 |
31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /admin_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Admin Home 7 | 12 | 13 | 14 |
15 |
16 |
17 | 18 |
19 | 20 | 21 | 22 |
23 |
24 |

Hi!

25 |

You have to add departments first. After adding departments you can register the facultys and provide them with a user name and a password. You can add, edit, view, delete the departments, students and the facultys whenever needed.

26 |
27 |
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /assignment.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Assignment 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 |

33 | 36 |

37 |
38 |
39 |
40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /contactus.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 56 | E-Learning: Contact Us 57 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 |
70 | 71 |
72 | 73 |
74 |
75 | Contact Us 76 | D.K.T.E. Society's Textile & Engineering Institute,
77 | Rajwada, P.O.Box. No.130,
78 | Ichalkaranji-416 115
79 | Dist: Kolhapur (MAHARASHTRA) INDIA.
80 | Gram: DATTA TECH
81 | 82 | Phone: (0230) 2421300,2432340, 2439557 to 59
83 | 84 | Fax: (0230) 2432329
85 | 86 | E-mail :
87 | dkte@sancharnet.in
88 | kpr_textile@sancharnet.in
89 | admission@dktes.com
90 |
91 |
92 |
93 |
94 |
95 |
96 | 97 |
98 |
99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /d_add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning : Add Department 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Add Assignment 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 |
Department:
46 |
47 |
48 | 49 | '; 58 | } 59 | } 60 | mysql_close($con); 61 | ?> 62 | 63 |
64 |
65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /d_delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Delete Department 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Delete Department 33 | 38 |
39 | 40 | 41 | 42 | 55 | 57 | 58 |
Department: 43 | 54 | 56 |
59 |
60 |
61 | 62 | '; 69 | } 70 | mysql_close($con); 71 | ?> 72 | 73 |
74 |
75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /d_edit.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Delete Edit 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Edit Department 33 | 38 |
39 | 40 | 41 | 42 | 55 | 56 | 58 | 59 |
Department: 43 | 54 | 57 |
60 |
61 |
62 | 63 | '; 70 | } 71 | mysql_close($con); 72 | ?> 73 | 74 |
75 |
76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /d_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E - Learning :All Department's 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | All Departments's 33 |
34 |
35 | 36 | '; 41 | echo ''; 42 | while($row = mysql_fetch_array($result)) 43 | { 44 | echo ''; 45 | } 46 | echo '
Department
'.$row['branch'] .'
'; 47 | ?> 48 | 49 |
50 | 51 |
52 |
53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /database/elearnings.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 3.2.0.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: localhost 6 | -- Generation Time: Oct 10, 2011 at 12:34 AM 7 | -- Server version: 5.5.8 8 | -- PHP Version: 5.3.3 9 | 10 | SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; 11 | 12 | 13 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 14 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 15 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 16 | /*!40101 SET NAMES utf8 */; 17 | 18 | -- 19 | -- Database: `elearnings` 20 | -- 21 | 22 | -- -------------------------------------------------------- 23 | 24 | -- 25 | -- Table structure for table `assignment` 26 | -- 27 | 28 | CREATE TABLE IF NOT EXISTS `assignment` ( 29 | `branch` varchar(25) NOT NULL, 30 | `class` varchar(5) NOT NULL, 31 | `subject` varchar(25) NOT NULL, 32 | `assignment` varchar(10000) NOT NULL 33 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 34 | 35 | -- 36 | -- Dumping data for table `assignment` 37 | -- 38 | 39 | 40 | -- -------------------------------------------------------- 41 | 42 | -- 43 | -- Table structure for table `department` 44 | -- 45 | 46 | CREATE TABLE IF NOT EXISTS `department` ( 47 | `branch` varchar(25) NOT NULL 48 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 49 | 50 | -- 51 | -- Dumping data for table `department` 52 | -- 53 | 54 | 55 | -- -------------------------------------------------------- 56 | 57 | -- 58 | -- Table structure for table `faculty` 59 | -- 60 | 61 | CREATE TABLE IF NOT EXISTS `faculty` ( 62 | `name` varchar(40) NOT NULL, 63 | `gender` varchar(10) NOT NULL, 64 | `address` varchar(50) NOT NULL, 65 | `contact_no` varchar(15) NOT NULL, 66 | `email_id` varchar(40) NOT NULL, 67 | `user_name` varchar(30) NOT NULL, 68 | `password` varchar(30) NOT NULL 69 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 70 | 71 | -- 72 | -- Dumping data for table `faculty` 73 | -- 74 | 75 | 76 | -- -------------------------------------------------------- 77 | 78 | -- 79 | -- Table structure for table `login` 80 | -- 81 | 82 | CREATE TABLE IF NOT EXISTS `login` ( 83 | `user_name` varchar(30) NOT NULL, 84 | `password` varchar(30) NOT NULL, 85 | `category` varchar(10) NOT NULL 86 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 87 | 88 | -- 89 | -- Dumping data for table `login` 90 | -- 91 | 92 | INSERT INTO `login` (`user_name`, `password`, `category`) VALUES 93 | ('admin', 'admin', 'admin'); 94 | 95 | -- -------------------------------------------------------- 96 | 97 | -- 98 | -- Table structure for table `notice` 99 | -- 100 | 101 | CREATE TABLE IF NOT EXISTS `notice` ( 102 | `branch` varchar(25) NOT NULL, 103 | `class` varchar(5) NOT NULL, 104 | `subject` varchar(25) NOT NULL, 105 | `notice` varchar(10000) NOT NULL 106 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 107 | 108 | -- 109 | -- Dumping data for table `notice` 110 | -- 111 | 112 | 113 | -- -------------------------------------------------------- 114 | 115 | -- 116 | -- Table structure for table `student` 117 | -- 118 | 119 | CREATE TABLE IF NOT EXISTS `student` ( 120 | `name` varchar(40) NOT NULL, 121 | `gender` varchar(10) NOT NULL, 122 | `address` varchar(50) NOT NULL, 123 | `contact_no` varchar(15) NOT NULL, 124 | `email_id` varchar(40) NOT NULL, 125 | `parents_name` varchar(40) NOT NULL, 126 | `parents_contact_no` varchar(15) NOT NULL, 127 | `branch` varchar(25) NOT NULL, 128 | `class` varchar(5) NOT NULL, 129 | `roll_no` varchar(20) NOT NULL, 130 | `user_name` varchar(30) NOT NULL, 131 | `password` varchar(30) NOT NULL, 132 | `date` date NOT NULL 133 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 134 | 135 | -- 136 | -- Dumping data for table `student` 137 | -- 138 | 139 | -------------------------------------------------------------------------------- /dbconnection.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /department.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Department 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 |

33 | 36 |

37 |
38 |
39 |
40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /edit_profile.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Edit Profile 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Edit Profile 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 |
User Name:
46 | 62 | 63 | Name: 64 | 65 | 66 | 67 | 68 | 69 | 70 | 78 | 79 |
Gender: 71 | Male 74 | Female 77 |
80 | 81 | 82 | 83 | 84 | 85 |
Address:
86 | 87 | 88 | 89 | 90 | 91 |
Contact No.:
92 | 93 | 94 | 95 | 96 | 97 |
Email ID:
98 | 99 | 100 | 101 | 102 | 103 |
Parents Name:
104 | 105 | 106 | 107 | 108 | 109 |
Parents Name:
110 | 111 | 112 | 113 | 125 | 126 |
Branch: 114 | 124 |
127 | 128 | 129 | 130 | 154 | 155 |
Class: 131 | 153 |
156 | 157 | 158 | 159 | 160 | 161 |
Roll No:
162 | 163 | 164 | 165 | 166 |
'; 167 | break; 168 | } 169 | else 170 | { 171 | $f = 1; 172 | } 173 | } 174 | if($f == 1) 175 | { 176 | echo ''; 177 | } 178 | } 179 | else 180 | { 181 | echo ''; 182 | } 183 | 184 | if(!empty($_POST['change'])) 185 | { 186 | $query = "UPDATE login SET (name = '$_POST[name]', gender = '$_POST[gender]', address = '$_POST[address]', contact_no = '$_POST[contact_no]', email_id = '$_POST[email_id]') WHERE user_name = '$row[user_name]'"; 187 | mysql_query($query,$con) or die(); 188 | $_SESSION['message'] = "Record saved successfully."; 189 | 190 | header("Location: http://localhost/E-learning/adduser.php"); 191 | } 192 | } 193 | ?> 194 | 195 |
196 |
197 | 198 |
199 |
200 | 201 | 202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /f_add.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning : Add Faculty 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Add Faculty 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 78 | 79 |
Name :
Gender : 47 | Male 48 | Female 49 |
Address :
Contact No. :
Email ID :
User Name :
Password :
Confirm Password :
77 |
80 |
81 |
82 | 83 | '; 98 | $f = 1; 99 | break; 100 | } 101 | } 102 | 103 | if($f == 0) 104 | { 105 | $fp = 0; 106 | if($_POST['password'] != $_POST['confirm_password']) 107 | { 108 | echo ''; 109 | $fp = 1; 110 | } 111 | 112 | if($fp == 0) 113 | { 114 | $query = "INSERT INTO faculty VALUES ('$_POST[name]', '$_POST[gender]', '$_POST[address]', '$_POST[contact_no]', '$_POST[email_id]', '$_POST[user_name]', '$_POST[password]')"; 115 | mysql_query($query,$con) or die(); 116 | $queryl = "INSERT INTO login VALUES ('$_POST[user_name]', '$_POST[password]', 'faculty')"; 117 | mysql_query($queryl,$con) or die(); 118 | echo ''; 119 | } 120 | } 121 | } 122 | } 123 | mysql_close($con); 124 | ?> 125 | 126 |
127 |
128 | 129 | 130 | 131 | 132 | 133 | -------------------------------------------------------------------------------- /f_change_password.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Change Password 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Change Password 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
User Name:
Old Password:
New Password:
Confirm Password:
61 | '; 85 | break; 86 | } 87 | } 88 | else 89 | { 90 | $f = 1; 91 | } 92 | } 93 | if($f == 1) 94 | { 95 | echo ''; 96 | } 97 | } 98 | else 99 | { 100 | echo ''; 101 | } 102 | } 103 | ?> 104 | 105 |
106 |
107 | 108 |
109 |
110 | 111 | 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /f_delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Delete Faculty 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Delete Faculty 33 | 38 |
39 | 40 | 41 | 42 | 43 | 45 | 46 |
User Name : 44 |
47 |
48 |
49 | 50 | '; 71 | break; 72 | } 73 | else 74 | { 75 | $f =0; 76 | } 77 | } 78 | 79 | if($f == 0) 80 | { 81 | echo ''; 82 | } 83 | } 84 | else 85 | { 86 | echo ''; 87 | } 88 | } 89 | mysql_close($con); 90 | ?> 91 | 92 |
93 |
94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /f_edit.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Edit Faculty 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | Edit Faculty 33 | 38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 |
User Name:
46 | '; 55 | } 56 | else 57 | { 58 | if(!empty($_POST['user_name'])) 59 | { 60 | $query = "SELECT * FROM faculty"; 61 | $result = mysql_query($query,$con) or die(); 62 | $f = 0; 63 | 64 | while($row = mysql_fetch_array($result)) 65 | { 66 | if($row['user_name'] == $_POST['user_name']) 67 | { 68 | $un = $row['user_name']; 69 | $f = 0; 70 | echo ' 71 | 72 | 73 | 74 | 75 |
Name :
76 | 77 | 78 | 79 | 87 | 88 |
Gender : 80 | Male 83 | Female 86 |
89 | 90 | 91 | 92 | 93 | 94 |
Address :
95 | 96 | 97 | 98 | 99 | 100 |
Contact No. :
101 | 102 | 103 | 104 | 105 | 106 |
Email ID :
107 | 108 | 109 | 110 | 111 |
'; 112 | break; 113 | } 114 | else 115 | { 116 | $f = 1; 117 | } 118 | } 119 | if($f == 1) 120 | { 121 | echo ''; 122 | } 123 | } 124 | else 125 | { 126 | echo ''; 127 | } 128 | } 129 | } 130 | ?> 131 | 132 |
133 |
134 | 135 |
136 |
137 | 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /f_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E - Learning :All Faculty's 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | All Faculty's 33 |
34 |
35 | 36 | '; 41 | echo ''; 42 | while($row = mysql_fetch_array($result)) 43 | { 44 | echo ''; 45 | } 46 | echo '
NameGenderAddressContact No.Email IDUser Name
'.$row['name'] . " " . $row['gender']. " " . $row['address']. " " . $row['contact_no']. " " . $row['email_id']. " " . $row['user_name'].'
'; 47 | ?> 48 | 49 |
50 | 51 |
52 |
53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /faculty.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Faculty 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 |

33 | 36 |

37 |
38 |
39 |
40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /faculty_home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | E-Learning: Faculty Home 7 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 |

Hi!

33 |

You can add, edit, view, delete a student. You can add assignments and notices to the students.

34 |
35 |
36 |
37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /images/Ichalkarnji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityashirodkar/E-Learning/f61e687130b45cb57a7634056af762e870ad8311/images/Ichalkarnji.jpg -------------------------------------------------------------------------------- /images/logo_dktes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityashirodkar/E-Learning/f61e687130b45cb57a7634056af762e870ad8311/images/logo_dktes.gif -------------------------------------------------------------------------------- /includes/admin_main_menu.php: -------------------------------------------------------------------------------- 1 | 43 | 44 | 45 | 59 | -------------------------------------------------------------------------------- /includes/assignment_sub_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/bottom_line.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | © 2011 @ DKTES, Ichalkaranji. 7 |
8 |
9 | -------------------------------------------------------------------------------- /includes/department_sub_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/faculty_main_menu.php: -------------------------------------------------------------------------------- 1 | 43 | 44 | 45 | 59 | -------------------------------------------------------------------------------- /includes/main.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* CSS Document */ 3 | body 4 | { 5 | margin:0px; 6 | background-color:#E1E1E1; 7 | } 8 | 9 | #page 10 | { 11 | width:1000px; 12 | margin:0 auto 0 auto; 13 | } 14 | 15 | #wrapper 16 | { 17 | width:1000px; 18 | margin:0 auto 0 auto; 19 | float:left; 20 | background-color:#D7E3E8; 21 | } 22 | 23 | #wrapper b 24 | { 25 | font-family:Verdana, Arial, Helvetica, sans-serif; 26 | font-size:22px; 27 | margin:20px 0 0 350px; 28 | float:left; 29 | } 30 | 31 | #wrapper form 32 | { 33 | font-family:Verdana, Arial, Helvetica, sans-serif; 34 | font-size:11px; 35 | float:left; 36 | margin:30px 0 0 340px; 37 | } 38 | 39 | #wrapper tr 40 | { 41 | height:40px; 42 | } 43 | 44 | #top 45 | { 46 | width:100%; 47 | height:100px; 48 | background-color:#3B4886; 49 | } 50 | 51 | #inner_top 52 | { 53 | width:1000px; 54 | margin:0 auto 0 auto; 55 | } 56 | 57 | #inner_top img 58 | { 59 | margin:0 0 0 30px; 60 | float:left; 61 | } 62 | 63 | /*#inner 64 | { 65 | width:1000px; 66 | float:left; 67 | background-color:#00CC00; 68 | } 69 | */ 70 | #login 71 | { 72 | float:right; 73 | font-family:Verdana, Arial, Helvetica, sans-serif; 74 | font-size:12px; 75 | color:#F7F7F7; 76 | } 77 | 78 | #login b 79 | { 80 | margin:40px 70px 0 0; 81 | float:right; 82 | text-decoration:underline; 83 | } 84 | 85 | #line 86 | { 87 | width:100%; 88 | height:4px; 89 | background-color:#E2DE71; 90 | float:left; 91 | } 92 | 93 | #menu 94 | { 95 | width:1000px; 96 | background-color:#AEBDDE; 97 | height:30px; 98 | margin:0 auto 0 auto; 99 | } 100 | 101 | #inner_menu 102 | { 103 | width:1000px; 104 | height:30px; 105 | float:left; 106 | } 107 | 108 | #submenu 109 | { 110 | width:180px; 111 | float:left; 112 | } 113 | 114 | #submenu a:link, #submenu a:visited 115 | { 116 | font-family:Verdana, Arial, Helvetica, sans-serif; 117 | font-size:12px; 118 | margin:7px 0 0 100px; 119 | font-weight:bold; 120 | float:left; 121 | text-decoration:none; 122 | color:#000000; 123 | } 124 | 125 | #submenu a:hover 126 | { 127 | color:#E2DE71; 128 | text-decoration:none; 129 | font-weight:bold; 130 | height:30px; 131 | float:left; 132 | } 133 | 134 | #mid 135 | { 136 | width:1000px; 137 | margin:0 auto 0 auto; 138 | background-color:#AEBDDE; 139 | } 140 | 141 | #text 142 | { 143 | width:1000px; 144 | background-color:#AEBDDE; 145 | margin:0 auto 0 auto; 146 | font-family:Verdana, Arial, Helvetica, sans-serif; 147 | } 148 | 149 | #text b 150 | { 151 | width:900px; 152 | font-size:16px; 153 | margin:0px 0 0px 50px; 154 | padding:20px 0 20px 0; 155 | float:left; 156 | } 157 | 158 | #text p 159 | { 160 | width:900px; 161 | font-family:Verdana, Arial, Helvetica, sans-serif; 162 | font-size:12px; 163 | line-height:22px; 164 | margin:0px 0 0px 50px; 165 | padding:10px 0 20px 0; 166 | text-align:justify; 167 | float:left; 168 | } 169 | 170 | #text form 171 | { 172 | width:875px; 173 | float:left; 174 | font-family:Verdana, Arial, Helvetica, sans-serif; 175 | font-size:12px; 176 | margin:0px 0 0 300px; 177 | } 178 | 179 | #contact_left 180 | { 181 | width:450px; 182 | float:left; 183 | font-family:Verdana, Arial, Helvetica, sans-serif; 184 | font-size:12px; 185 | line-height:22px; 186 | margin:0px 0 0px 50px; 187 | padding:10px 0 20px 0; 188 | text-align:justify; 189 | } 190 | 191 | #contact_right 192 | { 193 | width:460px; 194 | float:right; 195 | font-family:Verdana, Arial, Helvetica, sans-serif; 196 | font-size:12px; 197 | line-height:22px; 198 | margin:50px 30px 0px 0px; 199 | text-align:justify; 200 | background-color:#FFFFFF; 201 | } 202 | 203 | #button 204 | { 205 | margin:20px 0 0 0; 206 | } 207 | 208 | #bottom 209 | { 210 | width:100%; 211 | height:60px; 212 | background-color:#3B4886; 213 | float:left; 214 | } 215 | 216 | #bottom_text 217 | { 218 | width:1000px; 219 | margin:0 auto 0 auto; 220 | font-family:Verdana, Arial, Helvetica, sans-serif; 221 | font-size:9px; 222 | color:#FFFFFF; 223 | } 224 | 225 | #bottom b 226 | { 227 | margin:25px 0 0 400px; 228 | float:left; 229 | } 230 | 231 | #map_canvas 232 | { 233 | height:250px; 234 | width:460px; 235 | } 236 | -------------------------------------------------------------------------------- /includes/main_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/mm_menu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * mm_menu 20MAR2002 Version 6.0 3 | * Andy Finnell, March 2002 4 | * Copyright (c) 2000-2002 Macromedia, Inc. 5 | * 6 | * based on menu.js 7 | * by gary smith, July 1997 8 | * Copyright (c) 1997-1999 Netscape Communications Corp. 9 | * 10 | * Netscape grants you a royalty free license to use or modify this 11 | * software provided that this copyright notice appears on all copies. 12 | * This software is provided "AS IS," without a warranty of any kind. 13 | */ 14 | function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) 15 | { 16 | this.version = "020320 [Menu; mm_menu.js]"; 17 | this.type = "Menu"; 18 | this.menuWidth = mw; 19 | this.menuItemHeight = mh; 20 | this.fontSize = fs; 21 | this.fontWeight = "plain"; 22 | this.fontFamily = fnt; 23 | this.fontColor = fclr; 24 | this.fontColorHilite = fhclr; 25 | this.bgColor = "#555555"; 26 | this.menuBorder = 1; 27 | this.menuBgOpaque=opq; 28 | this.menuItemBorder = 1; 29 | this.menuItemIndent = idt; 30 | this.menuItemBgColor = bg; 31 | this.menuItemVAlign = valgn; 32 | this.menuItemHAlign = halgn; 33 | this.menuItemPadding = pad; 34 | this.menuItemSpacing = space; 35 | this.menuLiteBgColor = "#ffffff"; 36 | this.menuBorderBgColor = "#777777"; 37 | this.menuHiliteBgColor = bgh; 38 | this.menuContainerBgColor = "#cccccc"; 39 | this.childMenuIcon = "arrows.gif"; 40 | this.submenuXOffset = sx; 41 | this.submenuYOffset = sy; 42 | this.submenuRelativeToItem = srel; 43 | this.vertical = vert; 44 | this.items = new Array(); 45 | this.actions = new Array(); 46 | this.childMenus = new Array(); 47 | this.hideOnMouseOut = true; 48 | this.hideTimeout = to; 49 | this.addMenuItem = addMenuItem; 50 | this.writeMenus = writeMenus; 51 | this.MM_showMenu = MM_showMenu; 52 | this.onMenuItemOver = onMenuItemOver; 53 | this.onMenuItemAction = onMenuItemAction; 54 | this.hideMenu = hideMenu; 55 | this.hideChildMenu = hideChildMenu; 56 | if (!window.menus) window.menus = new Array(); 57 | this.label = " " + label; 58 | window.menus[this.label] = this; 59 | window.menus[window.menus.length] = this; 60 | if (!window.activeMenus) window.activeMenus = new Array(); 61 | } 62 | 63 | function addMenuItem(label, action) { 64 | this.items[this.items.length] = label; 65 | this.actions[this.actions.length] = action; 66 | } 67 | 68 | function FIND(item) { 69 | if( window.mmIsOpera ) return(document.getElementById(item)); 70 | if (document.all) return(document.all[item]); 71 | if (document.getElementById) return(document.getElementById(item)); 72 | return(false); 73 | } 74 | 75 | function writeMenus(container) { 76 | if (window.triedToWriteMenus) return; 77 | var agt = navigator.userAgent.toLowerCase(); 78 | window.mmIsOpera = agt.indexOf("opera") != -1; 79 | if (!container && document.layers) { 80 | window.delayWriteMenus = this.writeMenus; 81 | var timer = setTimeout('delayWriteMenus()', 500); 82 | container = new Layer(100); 83 | clearTimeout(timer); 84 | } else if (document.all || document.hasChildNodes || window.mmIsOpera) { 85 | document.writeln(''); 86 | container = FIND("menuContainer"); 87 | } 88 | 89 | window.mmHideMenuTimer = null; 90 | if (!container) return; 91 | window.triedToWriteMenus = true; 92 | container.isContainer = true; 93 | container.menus = new Array(); 94 | for (var i=0; i