-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductbycat.php
65 lines (46 loc) · 1.63 KB
/
productbycat.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
<?php include 'inc/header.php'; ?>
<?php
if (!isset($_GET['catId']) || $_GET['catId'] == NULL ) {
echo "<script>window.location = '404.php'; </script>";
}else {
$id = $_GET['catId'];
}
?>
<div class="main">
<div class="content">
<div class="content_top">
<div class="heading">
<?php
$productbycat = $pd->productByOnlyCat($id);
if ($productbycat) {
while ($result = $productbycat->fetch_assoc()) {
?>
<h3>Latest from <?php echo $result['catName']; ?> </h3>
<?php } } ?>
</div>
<div class="clear"></div>
</div>
<div class="section group">
<?php
$productbycat = $pd->productByCat($id);
if ($productbycat) {
while ($result = $productbycat->fetch_assoc()) {
?>
<div class="grid_1_of_4 images_1_of_4">
<a href="preview.php?proid=<?php echo $result['productId']; ?>">
<img src="adminlte/pages/tables/<?php echo $result['image']; ?>" alt="" /></a>
<h2><?php echo $result['productName']; ?> </h2>
<p><?php echo $fm->textShorten($result['body'], 60); ?></p>
<p><span class="price">$<?php echo $result['price']; ?></span></p>
<div class="button"><span><a href="preview.php?proid=<?php echo $result['productId']; ?>" class="details">Detalji</a></span></div>
</div>
<?php } } else {
header("Location:404.php");
// echo "Products of this category are not available";
} ?>
</div>
</div>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>