-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewmember.php
134 lines (118 loc) · 2.74 KB
/
viewmember.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
<?php
session_start();
?>
<?php
include("header.php");
if(!isset($_SESSION[staff_id]))
{
echo "<script>window.location=index.php;</script>";
}
if(isset($_GET[delid]))
{
$sql = "DELETE FROM member WHERE member_id=$_GET[delid]";
$qsql = mysqli_query($con,$sql);
echo mysqli_error($con);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert(member record deleted successfully..);</script>";
echo "<script>window.location=viewmember.php;</script>";
}
}
?>
</header>
<div id="about" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<center><h2 class="title">View Memeber</h2></center>
</div>
</div>
</div>
</div>
</div>
<div id="numbers" class="section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="number">
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<th>Image</th>
<th>Memebr Type</th>
<th>Name</th>
<th>Address</th>
<th>Documents</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT member.*,member_type.member_type FROM member LEFT JOIN member_type on member.member_type_id=member_type.member_type_id WHERE (member.status=Active OR member.status=Inactive)";
$qsql = mysqli_query($con,$sql);
while($rs = mysqli_fetch_array($qsql))
{
if($rs[image] == "")
{
$imgname="img/noimage.png";
}
else if(file_exists("imgmember/".$rs[image]))
{
$imgname = "imgmember/".$rs[image];
}
else
{
$imgname="img/noimage.png";
}
echo "<tr>
<td><img src=$imgname style=width: 100px; height: 124px;></td>
<td>$rs[member_type]</td>
<td>$rs[name]</td>
<td style=text-align: left;>$rs[address]<hr><b>Ph. No.</b> $rs[contact_no]</td>
<td>";
if(file_exists("imgaddressproof/".$rs[adress_proof]))
{
echo "<a href=imgaddressproof/$rs[adress_proof] class=btn btn-success style=width: 125px; download >Address Proof</a>";
}
echo "<hr>";
if(file_exists("imgidproof/".$rs[id_proof]))
{
echo "<a href=imgidproof/$rs[id_proof] class=btn btn-info style=width: 125px; download>ID Proof</a>";
}
echo "</td>
<td>$rs[status]</td>
<td style=width: 55px;>";
if($rs[status] != "Approved")
{
echo "<a href=viewmember.php?delid=$rs[0] class=btn btn-danger onclick=return confirmdel() style=width: 75px;>Delete</a><hr>
<a href=member.php?editid=$rs[0] class=btn btn-primary style=width: 75px;>Edit</a>";
echo "</td>";
}
echo "</tr>";
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>
<script>
function confirmdel()
{
if(confirm("Are you sure want to delete this record?") == true)
{
return true;
}
else
{
return false;
}
}
</script>