├── mvgr.jpg ├── README.md ├── uploaded_files └── 5035-photo.jpg ├── student_logout.php ├── db.php ├── admin_logout.php ├── staff_logout.php ├── config.php ├── mainpage.html ├── LICENSE ├── curricularupload.php ├── studentupload.php ├── sidebar.html ├── staff_login.php ├── extradetails.php ├── admin_login.php ├── student_details.php ├── admin_access.php ├── changepass.php ├── student_login.php ├── extraCo_curricular.php ├── student_profile.php ├── student_reset_password.php ├── staff_reset_password.php ├── admin_reset_password.php ├── stylesheet.css └── wt.sql /mvgr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/counsellor_portal_management/HEAD/mvgr.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # counsellor_portal_management 2 | 3 | This project contains three modules namely admin, student, counsellor. 4 | -------------------------------------------------------------------------------- /uploaded_files/5035-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/counsellor_portal_management/HEAD/uploaded_files/5035-photo.jpg -------------------------------------------------------------------------------- /student_logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staff_logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainpage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 18 | 19 |
20 | 22 |
23 | 24 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 hemanth challa 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /curricularupload.php: -------------------------------------------------------------------------------- 1 | 2 | 34 | Back 35 | "; 37 | echo "
"; 38 | } 39 | else{ 40 | echo "error in file uploading"; 41 | } 42 | } 43 | mysqli_close($conn); 44 | ?> -------------------------------------------------------------------------------- /studentupload.php: -------------------------------------------------------------------------------- 1 | 2 | 35 | Back 36 | "; 38 | echo "
"; 39 | } 40 | else{ 41 | echo "error in file uploading"; 42 | } 43 | } 44 | mysqli_close($conn); 45 | ?> -------------------------------------------------------------------------------- /sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 17 |
18 | 19 |
20 | 21 | 22 |
23 | 24 |
25 | 26 | 59 | 60 | -------------------------------------------------------------------------------- /staff_login.php: -------------------------------------------------------------------------------- 1 | 2 | 32 | 33 | 34 | 35 | 36 | 37 | Admin login 38 | 39 | 40 | 41 |
42 |
43 | 44 | 45 | 46 | 47 | 48 | 51 | 52 | 53 | 56 | 57 | 58 | 61 | 62 |

Counsellor login

49 | 50 |
54 | 55 |

59 | 60 |
63 |
64 |
65 | -------------------------------------------------------------------------------- /extradetails.php: -------------------------------------------------------------------------------- 1 | query($sql)); 13 | $row = []; 14 | 15 | if ($result->num_rows > 0) 16 | { 17 | // fetch all data from db into array 18 | $row = $result->fetch_all(MYSQLI_ASSOC); 19 | } 20 | 21 | ?> 22 | 23 | 24 | 25 | 26 | 27 | 28 | 36 | 37 | 38 | 39 |

40 | 41 | Sign Out 42 |

43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 |
EventTypeRegdnoNameEventNameStartDateEndDateRecognitionOrganization
76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /admin_login.php: -------------------------------------------------------------------------------- 1 | 2 | 40 | 41 | 42 | 43 | 44 | 45 | Admin login 46 | 47 | 48 | 49 |
50 |
51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 64 | 65 | 66 | 69 | 70 | 71 | 74 | 75 |

Admin login

57 | 58 |
62 | 63 |
67 | 68 |

72 | 73 |
76 |
77 |
78 | -------------------------------------------------------------------------------- /student_details.php: -------------------------------------------------------------------------------- 1 | query($qry)); 17 | if($result1->num_rows == 1){ 18 | header("location: student_profile.php"); 19 | } 20 | } 21 | $backlog=$_SESSION['uname']; 22 | //$backlog="nagesh"; 23 | $sql = "select * from $backlog "; 24 | $result = ($conn->query($sql)); 25 | //declare array to store the data of database 26 | $row = []; 27 | //header("location :student_profile.php"); 28 | if ($result->num_rows > 0) 29 | { 30 | // fetch all data from db into array 31 | $row = $result->fetch_all(MYSQLI_ASSOC); 32 | } 33 | 34 | ?> 35 | 36 | 37 | 38 | 39 | student details 40 | 41 | 42 | 43 |
44 | 45 |

46 | Reset Password 47 | Sign Out 48 |

49 | 50 | 52 | 53 | 54 | 56 |
51 |

55 |
57 |
58 |

LIST OF COUNSELLING STUDENTS

59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 71 | 72 | 73 | 74 | 75 | 76 |
Regdno
77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /admin_access.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | student profile 16 | 17 | 18 | 19 |
20 |

21 | Reset Password 22 | Sign Out 23 |

24 |

Insert Student Details

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 |
63 |
64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /changepass.php: -------------------------------------------------------------------------------- 1 | $ncp){ 18 | echo "New passwords do not match"; 19 | exit(); 20 | } 21 | else { 22 | $cquery="UPDATE `staff` SET `password` = '$np' WHERE `Type` = '$role' AND `uname` = '$uname'"; 23 | mysqli_query($conn,$cquery); 24 | echo "password sucessfully changed"; 25 | // header("location: form.html"); 26 | exit(); 27 | } 28 | } 29 | else { 30 | echo "invalid inputs"; 31 | echo $password; 32 | echo $uname; 33 | echo $role; 34 | exit(); 35 | } 36 | } 37 | ?> 38 | 39 | 40 | 41 | 49 | 50 | 51 | This may be the first time you logged in or we resetted you password so please kindly change your password 52 |
53 | 64 | Enter the username:
65 |
66 | Enter the current password:
67 |
68 | Enter the new password:
69 |
70 | confirm new password:
71 |
72 | 73 |
74 | 75 | -------------------------------------------------------------------------------- /student_login.php: -------------------------------------------------------------------------------- 1 | num_rows > 0) 23 | { 24 | // fetch all data from db into array 25 | $row1 = $result->fetch_assoc(); 26 | } 27 | //while($rows1=$result->fetch_assoc()) 28 | //{ 29 | $num=$row1['regdno']; 30 | $_SESSION["num"] = $num; 31 | //} 32 | header("location: extraCo_curricular.php"); 33 | exit(); 34 | } 35 | else{ 36 | 37 | echo "You entered wrong credentials "; 38 | echo $uname; 39 | exit(); 40 | } 41 | } 42 | ?> 43 | 44 | 45 | 46 | 47 | 48 | student login 49 | 50 | 53 | 54 | 55 |
56 |
57 | 58 | 59 | 60 | 61 | 62 | 65 | 66 | 67 | 70 | 71 | 72 | 75 | 76 | 77 | 80 | 81 |

student login

63 | 64 |
68 | 69 |
73 | 74 |

78 | 79 |
82 |
83 | 84 | 11 | 12 | 13 | 14 | student profile 15 | 16 | 17 | 18 |
19 |

20 | Reset Password 21 | Sign Out 22 |

23 |

Extra and Co-curricular Details

24 | 25 | 26 | 27 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 |
Certificate:
68 |
69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /student_profile.php: -------------------------------------------------------------------------------- 1 | query($sql)); 17 | //declare array to store the data of database 18 | $row = []; 19 | if ($result->num_rows > 0) { 20 | // fetch all data from db into array 21 | $row = $result->fetch_all(MYSQLI_ASSOC); 22 | } 23 | 24 | ?> 25 | 26 | 27 | 28 | student profile 29 | 30 | 31 | 32 |
33 | 34 |

35 | Sign Out 36 |

37 |

STUDENTS DETAILS


38 | 39 | 44 | 45 | 46 | 47 | 48 | 49 | " . "' . "";?> 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 | 77 | 78 | 79 | 80 | 81 | 82 |
Regdno :
Name :
Contact :
Email :
D.O.B :
Fathername :
Contact :


Extra and Co-curricular Details


Attendence Details


Semester Marks Details


Details of SWOK Analysis


83 | 84 |
85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /student_reset_password.php: -------------------------------------------------------------------------------- 1 | 2 | 74 | 75 | 76 | 77 | 78 | 79 | Reset Password 80 | 81 | 82 | 83 | 84 |
85 |

Reset Password

86 |

Please fill out this form to reset your password.

87 |
" method="post"> 88 | 89 | 90 | 97 | 102 | 107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /staff_reset_password.php: -------------------------------------------------------------------------------- 1 | 2 | 74 | 75 | 76 | 77 | 78 | 79 | Reset Password 80 | 81 | 82 | 83 | 84 |
85 |

Reset Password

86 |

Please fill out this form to reset your password.

87 |
" method="post"> 88 |
91 | 92 | 93 | 94 | ",$new_password_err; ?> 95 | 96 |
98 | 99 | 100 | ", $confirm_password_err; ?> 101 |
103 | 104 |

105 | 106 |
89 | 90 | 97 | 102 | 107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /admin_reset_password.php: -------------------------------------------------------------------------------- 1 | 2 | 75 | 76 | 77 | 78 | 79 | 80 | Reset Password 81 | 82 | 83 | 84 | 85 |
86 |

Reset Password

87 |

Please fill out this form to reset your password.

88 |
" method="post"> 89 |
91 | 92 | 93 | 94 | ",$new_password_err; ?> 95 | 96 |
98 | 99 | 100 | ", $confirm_password_err; ?> 101 |
103 | 104 |

105 | 106 |
90 | 91 | 98 | 103 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /stylesheet.css: -------------------------------------------------------------------------------- 1 | 2 | /*=========================================================layout section========================================================*/ 3 | 4 | body { 5 | background-color: #fff; 6 | margin: 0px; 7 | font-family: Verdana, Georgia, serif; 8 | //font-size: 14px; 9 | font-size:80%; 10 | height:100%; 11 | border:0px; 12 | width:100%; 13 | } 14 | 15 | #header { 16 | background-color:orange; 17 | font-size: 80%; 18 | margin: 0px; 19 | border:0px; 20 | height: 10.5%; 21 | display:flex; 22 | justify-content: center; 23 | flex-wrap:nowrap; 24 | } 25 | 26 | #navbar { 27 | background-color:#5c755e; 28 | font-size: 90%; 29 | height:7.5%; 30 | margin:0px; 31 | text-align:center; 32 | } 33 | 34 | .main { 35 | background-color:white; 36 | 37 | font-size: 110%; 38 | height:73%; 39 | 40 | } 41 | 42 | /*========================================================footer section========================================================*/ 43 | #footer{ 44 | background-color:#FDF5DF; 45 | height:9%; 46 | border-radius: 5px; 47 | clear:both;/*protects from left and right sidebars to overcome on the footer*/ 48 | color:#000; 49 | text-align:center; 50 | padding:15px; 51 | font-size:90%; 52 | } 53 | 54 | #footer ul{ 55 | margin: 10px; 56 | text-align:center; 57 | list-style-type:none; 58 | padding:5px; 59 | border-radius: 5px; 60 | } 61 | 62 | #footer ul li{ 63 | display:inline; 64 | text-align:center; 65 | } 66 | 67 | #footer ul li a { 68 | text-decoration:none; 69 | font-family:arial; 70 | padding: .2em 1em; 71 | color:#fff; 72 | border-radius:5px; 73 | background-color:#000; 74 | } 75 | 76 | #footer ul li a:hover { 77 | color:#000; 78 | font-weight:bold; 79 | background-color:#fff; 80 | } 81 | 82 | /*=======================================================button section=========================================================*/ 83 | 84 | .button { 85 | text-decoration:none; 86 | font-family:arial; 87 | padding: .2em 1em; 88 | color:#fff; 89 | border-radius:5px; 90 | background-color:#000; 91 | } 92 | 93 | .button:hover { 94 | color:#000; 95 | font-weight:bold; 96 | background-color:#fff; 97 | } 98 | 99 | /*========================================================header section========================================================*/ 100 | 101 | h1 { 102 | font-size: 120%; 103 | color: #ce282e; 104 | } 105 | 106 | h2 { 107 | font-size: 120%; 108 | color: darkblue; 109 | } 110 | 111 | h3{ 112 | font-size:300%; 113 | text-align:center; 114 | color:#e5e4d7; 115 | font-family:"century gothic","gill sans",arial,serif; 116 | margin:0px; /*as here this h3 is inheriting the margin fron header selector ,so here we overridded it by making it zero*/ 117 | 118 | /*the below code is used to align the text vertically*/ 119 | position:relative; 120 | top:50%; 121 | -webkit-transform:translateY(-50%); 122 | -ms-transform: translateY(-50%); 123 | transform: translateY(-50%); 124 | } 125 | /*we can also use comments like " // statements -->; " */ 126 | 127 | 128 | /*====================================================== R stylesheet ===============================================================*/ 129 | /* The sidebar menu */ 130 | 131 | .sidebar { 132 | height: 100%; 133 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 134 | width: 0; 135 | position: fixed;/* Stay in place */ 136 | z-index: 1;/* Stay on top */ 137 | top: 0; 138 | left: 0; 139 | background-color: #fcde67; 140 | overflow-x: hidden;/* Disable horizontal scroll */ 141 | padding-top: 50px; 142 | transition: 0.2s;/* 0.2 second transition effect to slide in the sidebar */ 143 | } 144 | 145 | #myInput { 146 | height: 23px; 147 | width: 90%; 148 | } 149 | 150 | #main1 { 151 | position: relative; 152 | display: flex; 153 | margin: 0 auto; 154 | flex-wrap: wrap; 155 | align-items: center; 156 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 157 | } 158 | 159 | #data { 160 | position: relative; 161 | top: 50%; 162 | text-align:center; 163 | } 164 | 165 | /* The sidebar links */ 166 | .sidebar a { 167 | padding: 8px 8px 8px 3px; 168 | text-decoration: none; 169 | font-size: 20px; 170 | color: black; 171 | display: block; 172 | transition: 0.2s; 173 | } 174 | 175 | /* When you mouse over the navigation links, change their color */ 176 | .sidebar a:hover { 177 | color: #5b09b9; 178 | } 179 | 180 | /* Position and style the close button (top right corner) */ 181 | .sidebar .closebtn { 182 | position: absolute; 183 | top: 0; 184 | right: 10px; 185 | font-size: 36px; 186 | margin-left: 50px; 187 | } 188 | 189 | /* The button used to open the sidebar */ 190 | .openbtn { 191 | font-size: 15px; 192 | cursor: pointer; 193 | background-color: rgb(31, 173, 38); 194 | color: white; 195 | padding: 10px 15px; 196 | border: none; 197 | } 198 | 199 | .openbtn:hover { 200 | background-color: rgb(10, 92, 35); 201 | } 202 | 203 | /* Style page content - use this if you want to push the page content to the right when you open the side navigation */ 204 | #main1 { 205 | transition: margin-left .5s; 206 | /* If you want a transition effect */ 207 | } 208 | -------------------------------------------------------------------------------- /wt.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 5.1.3 3 | -- https://www.phpmyadmin.net/ 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Feb 06, 2023 at 02:43 AM 7 | -- Server version: 10.4.24-MariaDB 8 | -- PHP Version: 7.3.16 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | START TRANSACTION; 12 | SET time_zone = "+00:00"; 13 | 14 | 15 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 16 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 17 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 18 | /*!40101 SET NAMES utf8mb4 */; 19 | 20 | -- 21 | -- Database: `wt` 22 | -- 23 | 24 | -- -------------------------------------------------------- 25 | 26 | -- 27 | -- Table structure for table `anjanadevi` 28 | -- 29 | 30 | CREATE TABLE `anjanadevi` ( 31 | `regdno` varchar(11) NOT NULL 32 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 33 | 34 | -- 35 | -- Dumping data for table `anjanadevi` 36 | -- 37 | 38 | INSERT INTO `anjanadevi` (`regdno`) VALUES 39 | ('15331a1237'), 40 | ('15331a1238'), 41 | ('15331a1239'), 42 | ('15331a1241'), 43 | ('16331a1237'), 44 | ('16331a1238'), 45 | ('16331a1239'), 46 | ('16331a1240'), 47 | ('16331a1241'), 48 | ('17331a1223'), 49 | ('17331a1227'), 50 | ('17331a1238'), 51 | ('17331a1249'), 52 | ('17331a1254'), 53 | ('18331a1241'), 54 | ('18331a1242'), 55 | ('18331a1243'), 56 | ('18331a1244'), 57 | ('18331a1245'), 58 | ('19331a1247'), 59 | ('19331a1248'), 60 | ('19331a1249'), 61 | ('19331a1250'), 62 | ('19331a1251'), 63 | ('20331a12b3'), 64 | ('20331a12b4'), 65 | ('20331a12b5'), 66 | ('20331a12b6'), 67 | ('20331a12b7'), 68 | ('20331a12b8'), 69 | ('20331a12b9'), 70 | ('20331a12c0'), 71 | ('20331a12c1'), 72 | ('20331a12c2'), 73 | ('20331a12c3'), 74 | ('20331a12c4'); 75 | 76 | -- -------------------------------------------------------- 77 | 78 | -- 79 | -- Table structure for table `atchut` 80 | -- 81 | 82 | CREATE TABLE `atchut` ( 83 | `regdno` varchar(11) NOT NULL 84 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 85 | 86 | -- -------------------------------------------------------- 87 | 88 | -- 89 | -- Table structure for table `counsellor` 90 | -- 91 | 92 | CREATE TABLE `counsellor` ( 93 | `id` int(11) NOT NULL, 94 | `cname` varchar(40) NOT NULL, 95 | `password` varchar(50) NOT NULL 96 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 97 | 98 | -- 99 | -- Dumping data for table `counsellor` 100 | -- 101 | 102 | INSERT INTO `counsellor` (`id`, `cname`, `password`) VALUES 103 | (1, 'nagesh', 'nagesh'), 104 | (2, 'srinivasa', 'srinivasa'), 105 | (3, 'pavan kumar', 'pavan'), 106 | (4, 'sobha rani', 'sobha'), 107 | (5, 'santhosh kumar', 'santhosh'), 108 | (6, 'nagendra kumar', 'nagendra'), 109 | (7, 'jyothi', 'jyothi'), 110 | (8, 'prasanna raju', 'prasanna'), 111 | (9, 'satyanaraya reddy', 'satyanaraya'), 112 | (10, 'anjanadevi', 'anjanadevi'), 113 | (11, 'swarna', 'swarna'), 114 | (12, 'atchut vardhan', 'atchut'), 115 | (13, 'raja reddy', 'raja'), 116 | (14, 'admin', 'admin'); 117 | 118 | -- -------------------------------------------------------- 119 | 120 | -- 121 | -- Table structure for table `curricular` 122 | -- 123 | 124 | CREATE TABLE `curricular` ( 125 | `regdno` varchar(11) NOT NULL, 126 | `name` varchar(40) NOT NULL, 127 | `startdate` date NOT NULL, 128 | `enddate` date NOT NULL, 129 | `recognition` varchar(40) NOT NULL, 130 | `organization` varchar(40) NOT NULL, 131 | `eventtype` varchar(15) NOT NULL, 132 | `eventname` varchar(15) NOT NULL, 133 | `certificate` varchar(30) NOT NULL 134 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 135 | 136 | -- 137 | -- Dumping data for table `curricular` 138 | -- 139 | 140 | INSERT INTO `curricular` (`regdno`, `name`, `startdate`, `enddate`, `recognition`, `organization`, `eventtype`, `eventname`, `certificate`) VALUES 141 | ('19331a1201', 'ganesh', '2022-06-01', '2022-06-02', 'participation', 'jntuk', 'ExtraCurricular', 'running', ''), 142 | ('19331a1201', 'ganesh', '2022-06-03', '2022-06-03', 'second', 'vizag', 'ExtraCurricular', 'swimming', ''), 143 | ('19331a1202', 'manasa', '2022-06-01', '2022-06-01', 'third', 'nss', 'ExtraCurricular', 'badminton', ''); 144 | 145 | -- -------------------------------------------------------- 146 | 147 | -- 148 | -- Table structure for table `jyothi` 149 | -- 150 | 151 | CREATE TABLE `jyothi` ( 152 | `regdno` varchar(11) NOT NULL 153 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 154 | 155 | -- -------------------------------------------------------- 156 | 157 | -- 158 | -- Table structure for table `nagendra` 159 | -- 160 | 161 | CREATE TABLE `nagendra` ( 162 | `regdno` varchar(11) NOT NULL 163 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 164 | 165 | -- 166 | -- Dumping data for table `nagendra` 167 | -- 168 | 169 | INSERT INTO `nagendra` (`regdno`) VALUES 170 | ('18331a1221'), 171 | ('18331a1222'), 172 | ('18331a1223'), 173 | ('18331a1224'), 174 | ('18331a1225'), 175 | ('19331a1224'), 176 | ('19331a1225'), 177 | ('19331a1226'), 178 | ('19331a1227'), 179 | ('19331a1228'), 180 | ('19331a1229'), 181 | ('20331a1289'), 182 | ('20331a1290'), 183 | ('20331a1291'), 184 | ('20331a1292'), 185 | ('20331a1293'), 186 | ('20331a1294'), 187 | ('20331a1295'), 188 | ('20331a1296'), 189 | ('20331a1297'), 190 | ('20331a1298'), 191 | ('20331a1299'), 192 | ('20331a12a0'); 193 | 194 | -- -------------------------------------------------------- 195 | 196 | -- 197 | -- Table structure for table `nagesh` 198 | -- 199 | 200 | CREATE TABLE `nagesh` ( 201 | `regdno` varchar(11) NOT NULL 202 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 203 | 204 | -- 205 | -- Dumping data for table `nagesh` 206 | -- 207 | 208 | INSERT INTO `nagesh` (`regdno`) VALUES 209 | ('19335a1201'), 210 | ('19335a1202'), 211 | ('19335a1203'), 212 | ('19335a1204'), 213 | ('19335a1205'), 214 | ('20331a1201'), 215 | ('20331a1202'), 216 | ('20331a1203'), 217 | ('20331a1204'), 218 | ('20331a1205'), 219 | ('20331a1206'), 220 | ('20331a1207'), 221 | ('20331a1208'), 222 | ('20331a1209'), 223 | ('20331a1210'), 224 | ('20331a1211'), 225 | ('20331a1212'); 226 | 227 | -- -------------------------------------------------------- 228 | 229 | -- 230 | -- Table structure for table `pavan` 231 | -- 232 | 233 | CREATE TABLE `pavan` ( 234 | `regdno` varchar(11) NOT NULL 235 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 236 | 237 | -- 238 | -- Dumping data for table `pavan` 239 | -- 240 | 241 | INSERT INTO `pavan` (`regdno`) VALUES 242 | ('18331a1206'), 243 | ('18331a1207'), 244 | ('18331a1208'), 245 | ('18331a1209'), 246 | ('18331a1210'), 247 | ('19331a1207'), 248 | ('19331a1208'), 249 | ('19331a1209'), 250 | ('19331a1210'), 251 | ('19331a1211'), 252 | ('19331a1212'), 253 | ('20331a1213'), 254 | ('20331a1214'), 255 | ('20331a1215'), 256 | ('20331a1216'), 257 | ('20331a1217'), 258 | ('20331a1218'), 259 | ('20331a1219'), 260 | ('20331a1220'), 261 | ('20331a1221'), 262 | ('20331a1222'), 263 | ('20331a1223'), 264 | ('20331a1224'); 265 | 266 | -- -------------------------------------------------------- 267 | 268 | -- 269 | -- Table structure for table `prasanna` 270 | -- 271 | 272 | CREATE TABLE `prasanna` ( 273 | `regdno` varchar(11) NOT NULL 274 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 275 | 276 | -- -------------------------------------------------------- 277 | 278 | -- 279 | -- Table structure for table `raja` 280 | -- 281 | 282 | CREATE TABLE `raja` ( 283 | `regdno` varchar(11) NOT NULL 284 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 285 | 286 | -- -------------------------------------------------------- 287 | 288 | -- 289 | -- Table structure for table `santhosh` 290 | -- 291 | 292 | CREATE TABLE `santhosh` ( 293 | `regdno` varchar(11) NOT NULL 294 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 295 | 296 | -- 297 | -- Dumping data for table `santhosh` 298 | -- 299 | 300 | INSERT INTO `santhosh` (`regdno`) VALUES 301 | ('18331a1216'), 302 | ('18331a1217'), 303 | ('18331a1218'), 304 | ('18331a1219'), 305 | ('18331a1220'), 306 | ('19331a1219'), 307 | ('19331a1220'), 308 | ('19331a1221'), 309 | ('19331a1222'), 310 | ('19331a1223'); 311 | 312 | -- -------------------------------------------------------- 313 | 314 | -- 315 | -- Table structure for table `satyanaraya` 316 | -- 317 | 318 | CREATE TABLE `satyanaraya` ( 319 | `regdno` varchar(11) NOT NULL 320 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 321 | 322 | -- -------------------------------------------------------- 323 | 324 | -- 325 | -- Table structure for table `sobha` 326 | -- 327 | 328 | CREATE TABLE `sobha` ( 329 | `regdno` varchar(11) NOT NULL 330 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 331 | 332 | -- 333 | -- Dumping data for table `sobha` 334 | -- 335 | 336 | INSERT INTO `sobha` (`regdno`) VALUES 337 | ('18331a1211'), 338 | ('18331a1212'), 339 | ('18331a1213'), 340 | ('18331a1214'), 341 | ('18331a1215'), 342 | ('19331a1213'), 343 | ('19331a1214'), 344 | ('19331a1215'), 345 | ('19331a1216'), 346 | ('19331a1217'), 347 | ('19331a1218'), 348 | ('20331a1277'), 349 | ('20331a1278'), 350 | ('20331a1279'), 351 | ('20331a1280'), 352 | ('20331a1281'), 353 | ('20331a1282'), 354 | ('20331a1283'), 355 | ('20331a1284'), 356 | ('20331a1285'), 357 | ('20331a1286'), 358 | ('20331a1287'), 359 | ('20331a1288'); 360 | 361 | -- -------------------------------------------------------- 362 | 363 | -- 364 | -- Table structure for table `srinivasa` 365 | -- 366 | 367 | CREATE TABLE `srinivasa` ( 368 | `regdno` varchar(11) NOT NULL 369 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 370 | 371 | -- 372 | -- Dumping data for table `srinivasa` 373 | -- 374 | 375 | INSERT INTO `srinivasa` (`regdno`) VALUES 376 | ('18331a1201'), 377 | ('18331a1202'), 378 | ('18331a1203'), 379 | ('18331a1204'), 380 | ('18331a1205'), 381 | ('19331a1201'), 382 | ('19331a1202'), 383 | ('19331a1203'), 384 | ('19331a1204'), 385 | ('19331a1205'), 386 | ('19331a1206'), 387 | ('20331a1265'), 388 | ('20331a1266'), 389 | ('20331a1267'), 390 | ('20331a1268'), 391 | ('20331a1269'), 392 | ('20331a1270'), 393 | ('20331a1271'), 394 | ('20331a1272'), 395 | ('20331a1273'), 396 | ('20331a1274'), 397 | ('20331a1275'), 398 | ('20331a1276'); 399 | 400 | -- -------------------------------------------------------- 401 | 402 | -- 403 | -- Table structure for table `student` 404 | -- 405 | 406 | CREATE TABLE `student` ( 407 | `regdno` varchar(11) NOT NULL, 408 | `name` varchar(40) NOT NULL, 409 | `password` varchar(40) NOT NULL, 410 | `DOB` date NOT NULL, 411 | `email` varchar(30) NOT NULL, 412 | `fathername` varchar(30) NOT NULL, 413 | `contact` bigint(11) NOT NULL, 414 | `fcontact` bigint(11) NOT NULL, 415 | `photo` varchar(100) NOT NULL 416 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 417 | 418 | -- 419 | -- Dumping data for table `student` 420 | -- 421 | 422 | INSERT INTO `student` (`regdno`, `name`, `password`, `DOB`, `email`, `fathername`, `contact`, `fcontact`, `photo`) VALUES 423 | ('19331a1201', 'ganesh', 'ganesh', '2002-06-01', 'ganesh@gmail.com', 'ganesh2', 9876543211, 9876543221, ''), 424 | ('19331a1208', 'hemanth', 'hemanth', '2002-07-13', 'challa.hemanth2001@gmail.com', 'krishna', 7036797256, 9876543218, 'uploaded_files/5035-photo.jpg'); 425 | 426 | -- -------------------------------------------------------- 427 | 428 | -- 429 | -- Table structure for table `swarna` 430 | -- 431 | 432 | CREATE TABLE `swarna` ( 433 | `regdno` varchar(11) NOT NULL 434 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 435 | 436 | -- 437 | -- Indexes for dumped tables 438 | -- 439 | 440 | -- 441 | -- Indexes for table `anjanadevi` 442 | -- 443 | ALTER TABLE `anjanadevi` 444 | ADD PRIMARY KEY (`regdno`); 445 | 446 | -- 447 | -- Indexes for table `atchut` 448 | -- 449 | ALTER TABLE `atchut` 450 | ADD PRIMARY KEY (`regdno`); 451 | 452 | -- 453 | -- Indexes for table `counsellor` 454 | -- 455 | ALTER TABLE `counsellor` 456 | ADD PRIMARY KEY (`id`); 457 | 458 | -- 459 | -- Indexes for table `student` 460 | -- 461 | ALTER TABLE `student` 462 | ADD PRIMARY KEY (`regdno`); 463 | 464 | -- 465 | -- AUTO_INCREMENT for dumped tables 466 | -- 467 | 468 | -- 469 | -- AUTO_INCREMENT for table `counsellor` 470 | -- 471 | ALTER TABLE `counsellor` 472 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; 473 | COMMIT; 474 | 475 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 476 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 477 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 478 | --------------------------------------------------------------------------------
92 | 93 | 94 | 95 | ",$new_password_err; ?> 96 | 97 |
99 | 100 | 101 | ", $confirm_password_err; ?> 102 |
104 | 105 |

106 | 107 |