-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstudent_editdetails.php
184 lines (155 loc) · 3.82 KB
/
student_editdetails.php
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
<?php session_start(); ?>
<!DOCTYPE HTML>
<html>
<head>
<title>
EDIT INFO
</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="w3-theme-black.css">
<style>
body {margin:0;}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.mainbox {
float: right;
background-color: green;
width: 60%;
border: 5px solid blue;
padding: 25px;
margin: 25px;
margin-right: 90px;
box-shadow: 5px 6px 7px;
padding-left: 80px;
padding-right: 80px;
}
.leftbox {
float: left;
background-color: red;
width: 15%;
border: 5px solid black;
padding: 25px;
margin: 25px;
box-shadow: 5px 6px 7px;
}
td
{
padding: 15px;
}
</style>
</head>
<body>
<!-- Top navigation bar-->
<div class="topnav">
<a href="studenthomepage.php">Home</a>
<a href="suggestedwork.php">Suggested Works</a>
<a href="viewworkstatus.php">Work Status</a>
<a href="offeredworks.php">Offered Works</a>
<a href="manageinterests.php">Manage Interests</a>
<a class="active" href="dept_editdetails.php">Edit Information</a>
</div>
<div style="text-align: center;">
<h2>Edit Personal Information</h2>
</div>
<?php
$servername = "localhost";
$username = "root";
$password = "time.org";
$dbname = "seproject";
// Create $connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if($_SERVER["REQUEST_METHOD"] == "POST")
{
$name=$_POST["name"];
$email=$_POST["email"];
$cno=$_POST["contactno"];
$conn->query("UPDATE Student SET name='$name', contactNo='$cno'
WHERE email='$email'");
header('Location: studenthomepage.php');
}
$sql = "SELECT name,rollno,hoursworked,contactNo,email FROM Student where rollno='B150640CS'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc())
{
echo "<div class='w3-col m3'>";
echo "<div class='w3-card w3-round w3-white'>";
echo "<div class='w3-container'>";
echo "<h4 class='w3-center'> " .$row["name"]. "</h4>";
echo "<p class='w3-center'><img src='avatar3.png' class='w3-circle' style='height:106px;width:106px' alt='Avatar'></p>";
echo '<hr>';
echo "Roll No: " .$row["rollno"]. "<br><br>";
echo "Hours Worked: " .$row["hoursworked"]. "<br><br>";
echo "Contact No: " .$row["contactNo"]. "<br><br>";
echo "Email: " .$row["email"]. "<br><br>";
echo "</div>";
echo "</div>";
echo "</div>";
echo "<br>";
}
}
else
{
echo "RECORD NOT FOUND";
exit;
}
$result = $conn->query($sql);
while($row = $result->fetch_assoc())
{
?>
<div class="mainbox">
<form method="post" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']);?>">
<H3>
<table>
<tr>
<td>NAME:</td>
<td><input type="text" name="name" value="<?php echo $row['name'];?>"> </td>
</tr>
<tr>
<td>ROLL NO:</td>
<td><p> <?php echo $row['rollno'];?> </p></td>
</tr>
<tr>
<td>CONTACT NO:</td>
<td> <input type="text" name="contactno" value="<?php echo $row['contactNo'];?>"> </td>
</tr>
<tr>
<td>EMAIL:</td>
<td> <p> <?php echo $row['email'];?> </p><input type="hidden" name="email" value="<?php echo $row['email'];?>"></td>
</tr>
</table>
</H3>
<center><input type="submit" name="submit" value="Submit"></center>
</form>
</div>
<?php
}
$conn->close();
?>
</body>
</html>