-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookpooja.php
More file actions
54 lines (52 loc) · 2.67 KB
/
Bookpooja.php
File metadata and controls
54 lines (52 loc) · 2.67 KB
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
<?php
include('includes/header.php');
include('includes/navbar.php');
include('admin/config/dbcon.php');
$qry = "select * from pooja";
$result = $con->query($qry);
?>
<div class="container mt-5 mb-5">
<div class="d-flex justify-content-center row">
<div class="col-md-10 ">
<?php while ($row = $result->fetch_assoc()): ?>
<div class="row p-3 bg-white border rounded">
<div class="col-md-3 mt-1"><img class="img-fluid img-responsive rounded product-image"
src="<?= 'admin/img/' . $row['poojaimg']; ?>"></div>
<div class="col-md-6 mt-5">
<h5>
<?= $row['poojatitle']; ?>
</h5>
<div class="d-flex flex-row">
<?php if($row['rating']>="4.0"): ?>
<div class="ratings mr-2"><h5><span class="badge badge-success"><img src="image/star.png" class="" height="10px" width="10px"></i><?= $row["rating"] ?></span></h5></div>
<?php else :?>
<div class="ratings mr-2"><h5><span class="badge badge-danger"><img src="image/star.png" class="" height="10px" width="10px"></i><?= $row["rating"] ?></span></h5></div>
<?php endif; ?>
</div>
<div class="mt-1 mb-1 spec-1"><span>100% pure copper</span><span class="dot"></span><span>Light
weight</span><span class="dot"></span><span>Best finish<br></span></div>
<div class="mt-1 mb-1 spec-1"><span>Unique design</span></div>
<p class="text-justify text-truncate para mb-0">There are many sizes available for this murti.
</div>
<div class="align-items-center align-content-center col-md-3 border-left mt-5">
<div class="d-flex flex-row align-items-center">
<h4 class="mr-1">Rs:
<?= $row['pprice'] ?>/-
</h4>
</div>
<div class="d-flex flex-column mt-4">
<a href="bookingdetails.php?id=<?= $row['poojaid'] ?>" class="btn btn-sm" type="submit"
name="order" style="background:#d12e11; color:white;">Order
Now</a>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
<?php
include('includes/footer.php');
include('includes/scripts.php');
?>