-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_adonor.php
52 lines (39 loc) · 876 Bytes
/
admin_adonor.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
<?php
session_start();
include("config.php");
include("admin_function.php");
if(!isset($_SESSION['usertype']))
{
header("location:admin.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("admin_head.php");?>
</head>
<body>
<?php include("admin_topnav.php"); ?>
<div class="container" style='margin-top:70px'>
<div class="row">
<div class="col-sm-3">
<?php include("admin_side_nav.php");?>
</div>
<div class="col-sm-9" >
<h3 class="text-success"><i class="fa fa-users"></i> Active Donor Details </h3><hr>
<div class="row">
<div class='col-md-12'>
<div class='table-responsive' id="feedback">
<?php
$sql="Select * from blood_donor WHERE STATUS=1";
load_donor($sql,$con);
?>
<div>
</div>
</div>
</div>
</div>
</div>
<?php include("admin_footer.php"); ?>
</body>
</html>