-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin-staff-all.php
40 lines (38 loc) · 2.06 KB
/
admin-staff-all.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
<?php
include("include/admin-header.php");
?>
<!--MAIN Content-->
<div class="container-fluid">
<?php
$result = mysqli_query($conn,"SELECT * FROM hospital.hospitalstaff");
if($result){
echo"<div class='row clearfix'>";
while($row=mysqli_fetch_assoc($result)){
echo"<div class='col-lg-3 col-md-6 col-sm-12'>";
echo"<div class='card'>";
echo"<div class='body text-center'>";
echo"<div class='chart easy-pie-chart-1' data-percent='75'>
<span>
<img src='assets/images/sm/". $row['profilename'] ."' data-toggle='tooltip' data-placement='top' title='Dr. Avatar' alt='user' class='rounded-circle'/>
</span>
</div>";
echo"<h6 class='mb-0'><a href='#' title='' >Dr.". $row['name'] ."</a> </h6>";
echo"<small>". $row['specialisation'] ."</small>";
echo"<ul class='social-links list-unstyled'>
<li><a title='facebook' href='https://www.facebook.com/".$row['facebook']."/'><i class='fa fa-facebook'></i></a></li>
<li><a title='twitter' href='https://www.twitter.com/".$row['twitter']."/'><i class='fa fa-twitter'></i></a></li>
<li><a title='instagram' href='https://www.instagram.com/".$row['instagram']."/'><i class='fa fa-instagram'></i></a></li>
</ul>";
echo"<span>".$row['address']."</span>";
echo"</div>";
echo"</div>";
echo"</div>";
}
echo"</div>";
}
else echo"error";
?>
</div>
<?php
include("include/admin-footer.php");
?>