-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdept_studentdetails.php
181 lines (142 loc) · 3.82 KB
/
dept_studentdetails.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w32.css">
<link rel="stylesheet" href="w3-theme-black.css">
<style>
body {margin:0;}
.leftbox {
float: left;
background-color: red;
width: 15%;
border: 5px solid black;
padding: 25px;
margin: 25px;
box-shadow: 5px 6px 7px;
}
.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;
}
.workbox {
float: right;
background-color: green;
width: 67%;
border: 5px solid blue;
padding: 25px;
margin: 25px;
box-shadow: 5px 6px 7px;
}
.mainbox {
float: right;
background-color: green;
width: 70%;
border: 5px solid blue;
padding: 2px;
margin-right: 6px;
box-shadow: 5px 6px 7px;
padding-left: 1px;
padding-right: 1px;
}
</style>
</head>
<body>
<!-- Top navigation bar-->
<div class="topnav">
<a href="departmenthomepage.php">Home</a>
<a href="dept_postwork.php">Post Work</a>
<a href="dept_approvework.php">Approve Work</a>
<a href="dept_approvehours.php">Approve Hours</a>
<a class="active" href="dept_studentdetails.php">Student Details</a>
<a href="dept_editdetails.php">Edit Details</a>
</div>
<div style="text-align: center;">
<h1>View Students</h1>
</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);
}
$sql = "SELECT Name,Email,ContactNumber,ContactPerson FROM Department where Name='CSED'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
echo "<br><br>";
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:90px;width:90px' alt='Avatar'></p>";
echo '<hr>';
echo "<p align='center'>Contact Person: " .$row["ContactPerson"]. "</p>";
echo "<p align='center'>Contact No: " .$row["ContactNumber"]. "</p>";
echo "<p align='center'>Email:" .$row["Email"]. "</p>";
echo "</div>";
echo "</div>";
echo "</div>";
echo "<br>";
}
} else {
echo "RECORD NOT FOUND";
exit;
}
//echo '</div>';
$sql = "SELECT name,rollno,hoursworked,contactno,email FROM Student";
//echo '<div class="mainbox">';
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
echo '<div class="mainbox">';
while($row = $result->fetch_assoc()){
// echo "<br><br>";
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:75px;width:75px' alt='Avatar'></p>";
//echo "<hr>";
echo "<p align='center'>RollNo:".$row["rollno"]. " </p>";
echo "<p align='center'>Hours Worked:".$row["hoursworked"]. "</p>";
echo "<p align='center'>Contact No:".$row["contactno"]. "</p>";
echo "<p align='center'>Email:<br>".$row["email"]."</p>";
echo '</div>';
echo '</div>';
echo '</div>';
//echo '<br>';
//echo '<br>';
}
echo '</div>';
} else {
echo "RECORD NOT FOUND";
exit;
}
$conn->close();
?>
</body>
</html>