-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvs.php
More file actions
43 lines (38 loc) · 756 Bytes
/
vs.php
File metadata and controls
43 lines (38 loc) · 756 Bytes
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
<?php
include 'header.php';
?>
<div class="col-lg-6 col-lg-offset-3">
<div class="row">
<h1 class="text-center"><strong>VERIFIED STUDENTS</strong></h1>
<br><br>
<?php
$qu="SELECT * FROM user where role='student' and isverified=1";
$fire=mysqli_query($con,$qu);
?>
<table class="table table-border">
<thead>
<tr>
<th>UID</th>
<th>NAME </th>
<th>EMAIL</th>
<th>MOBILE NO</th>
<th>PROFILE IMAGE</th>
</tr>
</thead>
<tbody>
<?php
foreach($fire as $row)
{
?>
<td><?php echo $row['uid']; ?></td>
<td><?php echo $row['name']; ?></td>
<td><?php echo $row['email']; ?></td>
<td><?php echo $row['mobile']; ?></td>
<td><?php echo $row['profile_image']; ?></td>
<?php
}
?>
</tbody>
</table>
</div>
</div>