-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.php
59 lines (46 loc) · 1.72 KB
/
details.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
<!-- Button trigger modal
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#detmodal">
Launch demo modal
</button> -->
<?php
echo '<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
</head>
<div class="modal fade" id="detmodal" tabindex="-1" aria-labelledby="detmodalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="detmodalLabel">Details</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form method="POST">
<div class="mb-3">
<label for="exampleInputname" class="form-label"><b>Name :- </b></label>
'.$fetch['firstname'] .' '. $fetch['lastname'] .'
</div>
<div class="mb-3">
<label for="exampleInputPack" class="form-label"><b>Pack Selected :- </b></label>
'. $fetch['pack'] .'
</div>
<div class="mb-3">
<label for="exampleInputemail" class="form-label"><b>Email :- </b></label>
'. $fetch['email'] .'
</div>
<div class="mb-3">
<label for="exampleInputPhone" class="form-label"><b>Contact No. :- </b></label>
'. $fetch['phone'] .'
</div>
<div class="mb-3">
<label for="exampleInputPhone" class="form-label"><b>Address :- </b></label>
'. $fetch['address'] .'
</div>
<div class="text-center">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</form>
</div>
</div>
</div>
</div>';
?>