-
Notifications
You must be signed in to change notification settings - Fork 2
/
userinfo.php
212 lines (160 loc) · 4.25 KB
/
userinfo.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
try {
@session_start();
$user_name = $_SESSION['name'];
require_once 'include/db.php';
$sql = "SELECT * FROM `tbl_ticketbooking` WHERE u_name = '$user_name';";
$userticket = mysqli_query($con, $sql);
} catch (Exception $e) {
die('Database connection error' . '<br>' . $e->getMessage());
}
?>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
padding-top: 100px;
/* Location of the box */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close1 {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close1:hover,
.close1:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
/* table css */
#customers {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#customers td,
#customers th {
border: 1px solid #ddd;
padding: 8px;
}
#customers tr:nth-child(even) {
background-color: #f2f2f2;
}
#customers tr:hover {
background-color: #ddd;
}
#customers th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #af73e7;
color: white;
}
</style>
<!-- Trigger/Open The Modal -->
<!-- <button id="myBtn">Open Modal</button> -->
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close1">×</span>
<h3 color='red'> Tickets:</h3><br>
<?php
if (mysqli_num_rows($userticket) > 0) {
?>
<table id="customers">
<tr>
<th> SN</th>
<th> Museum Name</th>
<th> Booking date</th>
<th> Nepali Citizen</th>
<th> Nepali Student</th>
<th>Foregin Citizen </th>
<th>Special Able </th>
<th> Payment</th>
<th> Transction Id</th>
<th> Amount</th>
</tr>
<!-- </table>
<table id="customers"> -->
<?php
$i = 0;
while ($row = mysqli_fetch_array($userticket)) {
?>
<tr>
<td> <?php echo $i + 1 ?></td>
<td> <?php echo $row['m_name'] ?></td>
<td> <?php echo $row['b_date'] ?></td>
<td> <?php echo $row['no_of_nc'] ?></td>
<td> <?php echo $row['no_of_ns'] ?></td>
<td> <?php echo $row['no_of_fc'] ?></td>
<td> <?php echo $row['no_of_sa'] ?></td>
<td> <?php echo $row['payment_type'] ?></td>
<td> <?php echo $row['transction_no'] ?></td>
<td> <?php echo "NRS " . $row['amount'] ?></td>
</tr>
<?php
$i++;
}
?>
</table>
<?php
} else {
echo (" <p> NO Ticket Booking !!! </p> ");
}
?>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("userTicket_nvabtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close1")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>