-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmserver.php
More file actions
220 lines (145 loc) · 5.02 KB
/
admserver.php
File metadata and controls
220 lines (145 loc) · 5.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?php
session_start();
$regno ="";
$npassword ="";
$sname ="";
$pname="";
$smob ="";
$pmob="";
$dob="";
$dept="";
$email ="";
$id="";
$news="";
$ano="";
$idn="";
$newsn="";
$errors = array();
$db= mysqli_connect('localhost','root','','final') or die("could not connect to db");
if(isset($_POST['adminl'])){
$regno = mysqli_real_escape_string($db, $_POST['admin']);
$npassword = mysqli_real_escape_string($db, $_POST['lpassword']);
if(empty($regno)){array_push($errors,"regno is required");}
if(empty($npassword)){array_push($errors,"password is required");}
if(count($errors) == 0)
{
$ppassword =md5($npassword);
$query = "SELECT * FROM `admin` WHERE id='$regno' AND password='$ppassword'";
$results=mysqli_query($db,$query);
if($results>0)
{$_SESSION['admin'] = $regno;
$_SESSION['success'] ="loged in succes";
$s=$_SESSION['admin'];
header('location:admhome.php');
}
else{
array_push($errors,"not matching creadites");
}
}
}
if(isset($_POST['submitd'])){
$sname = mysqli_real_escape_string($db,$_POST['sname']);
$pname = mysqli_real_escape_string($db, $_POST['pname']);
$regno = mysqli_real_escape_string($db, $_POST['regno']);
$email = mysqli_real_escape_string($db, $_POST['email']);
$smob = mysqli_real_escape_string($db, $_POST['smob']);
$pmob= mysqli_real_escape_string($db, $_POST['pmob']);
$dob= mysqli_real_escape_string($db, $_POST['dob']);
$dept=mysqli_real_escape_string($db,$_POST['dept']);
if(empty($sname)){array_push($errors,"sname is required");}
if(empty($pname)){array_push($errors,"pname is required");}
if(empty($regno)){array_push($errors,"regno is required");}
if(empty($email)){array_push($errors,"email is required");}
if(empty($smob)){array_push($errors,"smob is required");}
if(empty($pmob)){array_push($errors,"pmob is not matched");}
if(empty($dob)){array_push($errors,"dob is required");}
$user_check="SELECT * FROM `detais` WHERE regno= '$regno' LIMIT 1";
$result =mysqli_query($db,$user_check);
$user = mysqli_fetch_assoc($result);
if($user){
if($user['regno'] ===$regno){
array_push($errors,"regno Already Exits Please check in db");
}
}
if(count($errors) == 0){
$password =md5($npassword);
$query ="INSERT INTO `detais`(`name`, `regno`, `dept`, `email`, `dob`, `mob`, `parent name`, `pmob`) VALUES ('$sname','$regno','$dept','$email','$dob','$smob','$pname','$pmob')";
$res=mysqli_query($db,$query);
}
}
if (isset($_POST['logouta'])) {
session_destroy();
unset($_SESSION['regno']);
header("location:login admin.php");
}
if (isset($_POST['home'])) {
header("location:admhome.php");
}
if(isset($_POST['submitnew'])){
$id = mysqli_real_escape_string($db, $_POST['id']);
$news = mysqli_real_escape_string($db, $_POST['news']);
if(empty($id)){array_push($errors,"id is required");}
if(empty($news)){array_push($errors,"news is required");}
$user_check="SELECT * FROM `news` WHERE id= '$id' LIMIT 1";
$result =mysqli_query($db,$user_check);
$user = mysqli_fetch_assoc($result);
if($user){
if($user['id'] ===$id){
array_push($errors,"id Already Exits Please give new id");
}
}
if(count($errors) == 0){
$query="INSERT INTO `news` VALUES('$id','$news')";
$res=mysqli_query($db,$query);
if ($res) {
echo"<h4>successfully inserted</h4>";
}
}
}
if(isset($_POST['submitano'])){
$id = mysqli_real_escape_string($db, $_POST['id']);
$ano = mysqli_real_escape_string($db, $_POST['ano']);
if(empty($id)){array_push($errors,"id is required");}
if(empty($ano)){array_push($errors,"ano is required");}
$user_check="SELECT * FROM `ano` WHERE id= '$id' LIMIT 1";
$result =mysqli_query($db,$user_check);
$user = mysqli_fetch_assoc($result);
if($user){
if($user['id'] ===$id){
array_push($errors,"id Already Exits Please give new id");
}
}
if(count($errors) == 0){
$query="INSERT INTO `ano` VALUES('$id','$ano')";
$res=mysqli_query($db,$query);
if ($res) {
echo"<h4>successfully inserted</h4>";
}
}
}
if(isset($_POST['delano'])){
$id = mysqli_real_escape_string($db, $_POST['id']);
if(empty($id)){array_push($errors,"id is required");}
if(count($errors) == 0){
$query="DELETE FROM `ano` WHERE id='$id'";
$res=mysqli_query($db,$query);
echo "successfully deleted";}
}
if(isset($_POST['delnews'])){
$id = mysqli_real_escape_string($db, $_POST['id']);
if(empty($id)){array_push($errors,"id is required");}
if(count($errors) == 0){
$query="DELETE FROM `news` WHERE id='$id'";
$res=mysqli_query($db,$query);
echo "successfully deleted";}
}
if(isset($_POST['delstu'])){
$id = mysqli_real_escape_string($db, $_POST['id']);
if(empty($id)){array_push($errors,"register number is required");}
if(count($errors) == 0){
$query="DELETE FROM `detais` WHERE regno='$id'";
$res=mysqli_query($db,$query);
echo "<h4>deleted</h4>";
}
}
?>