-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvithkuq.php
146 lines (108 loc) · 3.59 KB
/
vithkuq.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="theme-color" content="#272727">
<title>Produkte Shqiptare | Vithkuqit</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- PLUGINS -->
<link rel="stylesheet" href="css/vlthemes.css">
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- FRAMES -->
<span class="frame-line top-frame"></span>
<span class="frame-line right-frame"></span>
<span class="frame-line bottom-frame"></span>
<span class="frame-line left-frame"></span>
<div class="animsition">
<div class="content">
<?php include('header.php');
include('cpanel/dbcon.php');?>
<section>
<div class="container">
<div class="page-title text-center">
<h1>Produkte Te Vithkuqit</h1>
<p></p>
</div>
</div>
</section>
<!-- END SECTION -->
<main>
<div class="padding">
<div class="container">
<div class="text-center">
<div class="toggle-filter">
Kategorite
</div>
<!-- END TOGGLE-FILTER --><div class="filters-wrap"><a class="active" href="#" data-filter="*">
<span>Te Gjitha</span>
</a>
<?php $katg=mysql_query("select kategori from produkt ")or die (mysql_error());
while($katgr=mysql_fetch_array($katg)){ ?>
<a href="#" data-filter=".<?php echo $katgr['kategori'];?>">
<span><?php echo $katgr['kategori'];?></span>
</a>
<?php }?>
</div>
<!-- END FILTERS-WRAP -->
</div>
</div>
<div class="container">
<div class="portfolio-masonry-wrapper" data-col="three" data-gutter="60">
<div class="portfolio-list">
<?php
$search=mysql_query("SELECT * FROM produkt WHERE vendodhje LIKE '%vithkuq%'")or die (mysql_error());
while ($row=mysql_fetch_array($search)){ ?>
<article class="portfolio-item <?php echo $row['kategori'];?>">
<a class="fancybox" href="cpanel/<?php echo $row['location'];?>">
<div class="portfolio-img">
<img
src="cpanel/<?php echo $row['location'];?>"
class="wow fadeIn"
data-wow-duration="1s"
data-wow-delay="0.2s"
alt="">
</div>
<div class="portfolio-content-wrap">
<div class="potfolio-content">
<h4 class="portfolio-title">
Cmimi: <?php echo $row['cmim'];?>
</h4>
<div class="portfolio-categories">
<?php echo $row['kategori'];?> <?php echo $row['emer'];?>
</div>
</div>
</div>
</a><a href="order.php?id=<?php echo $row['produkt_id'];?>" class="button button-default">Porosit Tani</a>
</article>
<!-- END PORTFOLIO-ITEM -->
<?php } ?>
</div>
</div>
<!-- END PORTFOLIO-MASONRY-WRAPPER -->
</div>
</div>
</main>
<!-- END MAIN -->
<?php include('footer.php'); ?>
</div>
<!-- END CONTENT -->
</div>
<!-- END ANIMSITION -->
<!-- SCRIPTS -->
<script src="vendors/jquery-1.12.0.min.js"></script>
<script src="scripts/plugins.min.js"></script>
<!-- CUSTOM SCRIPT -->
<script src="scripts/script.js"></script>
</body>
</html>