-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewtourismplace.php
86 lines (86 loc) · 2.6 KB
/
viewtourismplace.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
<?php
include("header.php");
if (!isset($_SESSION['staffid'])) {
echo "<script>window.location='index.php';</script>";
}
if (isset($_GET['delid'])) {
$sql = "DELETE FROM tourism_place WHERE tourism_placeid='$_GET[delid]'";
$qsql = mysqli_query($con, $sql);
if (mysqli_affected_rows($con) == 1) {
echo "<SCRIPT>alert('Tourism Place deatils deleted successfully...');</SCRIPT>";
echo "<script>window.location='viewtourismplace.php';</script>";
} else {
echo mysqli_error($con);
}
}
?>
<!-- Sub Banner Start -->
<div class="mg_sub_banner">
<div class="container">
<h2>View Tourism Place</h2>
</div>
</div>
<!-- Sub Banner End -->
<!-- iqoniq Contant Wrapper Start-->
<div class="iqoniq_contant_wrapper">
<section class="gray-bg aboutus-wrapper">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="about-us">
<div class="text">
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<th>Location</th>
<th>Tourism Place</th>
<th>Description</th>
<th>Status</th>
<th style="width: 150px;">Action</th>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT tourism_place.*,tourism_location.location_name FROM tourism_place LEFT JOIN tourism_location ON tourism_location.location_id=tourism_place.location_id";
$qsql = mysqli_query($con, $sql);
while ($rs = mysqli_fetch_array($qsql)) {
$sqlnoloc = "SELECT * FROM `gallery` WHERE tourism_placeid='$rs[0]'";
$qsqlnoloc = mysqli_query($con, $sqlnoloc);
$noloc = mysqli_num_rows($qsqlnoloc);
echo "<tr>
<td>$rs[location_name]</td>
<td>$rs[tourism_place]</td>
<td>$rs[description]</td>
<td>$rs[status]</td>
<td>
<a href='tourism_place.php?editid=$rs[0]' class='btn btn-info' style='width: 100%;'>Edit</a> ";
if ($_SESSION['stafftype'] == "Administrator") {
echo "<A href='viewtourismplace.php?delid=$rs[0]' class='btn btn-danger' onclick='return confirmdel()' style='width: 100%;'>Delete</a>";
}
echo "<a href='viewgallery.php?tourism_placeid=$rs[0]' class='btn btn-primary' style='width: 100%;'>Gallery ($noloc)</a><br>
</td>
</tr>";
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- iqoniq Contant Wrapper End-->
<?php
include("footer.php");
?>
<script>
function confirmdel() {
if (confirm("Are you sure want to delete this record?") == true) {
return true;
} else {
return false;
}
}
</script>