-
-
Notifications
You must be signed in to change notification settings - Fork 388
/
product.php
396 lines (334 loc) · 14.5 KB
/
product.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?php
include "header.php";
?>
<!-- /BREADCRUMB -->
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},900);
});
});
</script>
<script>
(function (global) {
if(typeof (global) === "undefined")
{
throw new Error("window is undefined");
}
var _hash = "!";
var noBackPlease = function () {
global.location.href += "#";
// making sure we have the fruit available for juice....
// 50 milliseconds for just once do not cost much (^__^)
global.setTimeout(function () {
global.location.href += "!";
}, 50);
};
// Earlier we had setInerval here....
global.onhashchange = function () {
if (global.location.hash !== _hash) {
global.location.hash = _hash;
}
};
global.onload = function () {
noBackPlease();
// disables backspace on page except on input fields and textarea..
document.body.onkeydown = function (e) {
var elm = e.target.nodeName.toLowerCase();
if (e.which === 8 && (elm !== 'input' && elm !== 'textarea')) {
e.preventDefault();
}
// stopping event bubbling up the DOM tree..
e.stopPropagation();
};
};
})(window);
</script>
<!-- SECTION -->
<div class="section main main-raised">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- Product main img -->
<?php
include 'db.php';
$product_id = $_GET['p'];
$sql = " SELECT * FROM products AS P,categories AS C WHERE P.product_cat = C.cat_id AND P.product_id = '$product_id'";
if (!$con) {
die("Connection failed: " . mysqli_connect_error());
}
$result = mysqli_query($con, $sql);
if (mysqli_num_rows($result) > 0)
{
while($row = mysqli_fetch_assoc($result))
{
echo '
<div class="col-md-5 col-md-push-2">
<div id="product-main-img">
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
</div>
</div>
<div class="col-md-2 col-md-pull-5">
<div id="product-imgs">
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'g" alt="">
</div>
<div class="product-preview">
<img src="product_images/'.$row['product_image'].'" alt="">
</div>
</div>
</div>
';
?>
<!-- FlexSlider -->
<?php
echo '
<div class="col-md-5">
<div class="product-details">
<h2 class="product-name">'.$row['product_title'].'</h2>
<div id = "rating_reviews">
</div>
<div>
<h3 class="product-price">$'.$row['product_price'].'<del class="product-old-price">$990.00</del></h3>
<span class="product-available">In Stock</span>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<div class="product-options">
<label>
Size
<select class="input-select">
<option value="0">X</option>
</select>
</label>
<label>
Color
<select class="input-select">
<option value="0">Red</option>
</select>
</label>
</div>
<div class="add-to-cart">
<div class="qty-label">
Qty
<div class="input-number">
<span class="qty-up">+</span>
<span class="qty-down">-</span>
</div>
</div>
<div class="btn-group" style="margin-left: 25px; margin-top: 15px">
<button class="add-to-cart-btn" pid="'.$row['product_id'].'" id="product" ><i class="fa fa-shopping-cart"></i> add to cart</button>
</div>
</div>
<ul class="product-btns">
<li><a href="#" pid="'.$row['product_id'].'" id="wishlist" ><i class="fa fa-heart-o"></i> add to wishlist</a></li>
<li><a href="#"><i class="fa fa-exchange"></i> add to compare</a></li>
</ul>
<ul class="product-links">
<li>Category:</li>
<li><a href="#">'.$row["cat_title"].'</a></li>
</ul>
<ul class="product-links">
<li>Share:</li>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</div>
';
$_SESSION['product_id'] = $row['product_id'];
}
}
?>
<div class="col-md-12">
<div id="product-tab">
<!-- product tab nav -->
<ul class="tab-nav">
<li class="active"><a data-toggle="tab" href="#tab1">Description</a></li>
<li><a data-toggle="tab" href="#tab2">Details</a></li>
<?php
include 'db.php';
$product_id = $_GET['p'];
$product_query = "SELECT COUNT(*) AS count FROM reviews WHERE product_id='$product_id'";
$run_query = mysqli_query($con,$product_query);
$row = mysqli_fetch_array($run_query);
$reviews_count=$row["count"];
echo '<li><a data-toggle="tab" href="#tab3">Reviews ('.$reviews_count.')</a></li>';
?>
</ul>
<!-- /product tab nav -->
<!-- product tab content -->
<div class="tab-content">
<!-- tab1 -->
<div id="tab1" class="tab-pane fade in active">
<div class="row">
<div class="col-md-12">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</div>
<!-- /tab1 -->
<!-- tab2 -->
<div id="tab2" class="tab-pane fade in">
<div class="row">
<div class="col-md-12">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</div>
<!-- /tab2 -->
<!-- tab3 -->
<div id="tab3" class="tab-pane fade in">
<div class="row">
<!-- Rating -->
<div id="review_action" pid='<?php echo"$product_id"; ?>'></div>
<!-- Review Form -->
<div class="col-md-3 mainn">
<div id="review-form">
<form class="review-form" onsubmit="return false" id="review_form" required>
<input class="input" type="text" name="name" placeholder="Your Name" required>
<input class="input" type="email" name="email" placeholder="Your Email" required>
<?php
$product_id = $_GET['p'];
echo'<input name="product_id" value="'.$product_id.'" hidden required>'
?>
<textarea class="input" name="review" placeholder="Your Review"></textarea>
<div class="input-rating">
<span>Your Rating: </span>
<div class="stars">
<input id="star5" name="rating" value="5" type="radio" required><label for="star5"></label>
<input id="star4" name="rating" value="4" type="radio" required><label for="star4"></label>
<input id="star3" name="rating" value="3" type="radio" required><label for="star3"></label>
<input id="star2" name="rating" value="2" type="radio" required><label for="star2"></label>
<input id="star1" name="rating" value="1" type="radio" required><label for="star1"></label>
</div>
</div>
<button class="primary-btn" name="review_submit">Submit</button>
</form>
</div>
</div>
<!-- /Review Form -->
</div>
</div>
<!-- /tab3 -->
</div>
<!-- /product tab content -->
</div>
</div>
<!-- /product tab -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /SECTION -->
<!-- Section -->
<div class="section main main-raised">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-12">
<div class="section-title text-center">
<h3 class="title">Related Products</h3>
</div>
</div>
<?php
include 'db.php';
$product_id = $_GET['p'];
$product_query = "SELECT * FROM products,categories WHERE product_cat=cat_id AND product_id BETWEEN $product_id AND $product_id+3";
$run_query = mysqli_query($con,$product_query);
if(mysqli_num_rows($run_query) > 0){
while($row = mysqli_fetch_array($run_query)){
$pro_id = $row['product_id'];
$pro_cat = $row['product_cat'];
$pro_brand = $row['product_brand'];
$pro_title = $row['product_title'];
$pro_price = $row['product_price'];
$pro_image = $row['product_image'];
$cat_name = $row["cat_title"];
echo "
<div class='col-md-3 col-xs-6'>
<a href='product.php?p=$pro_id'><div class='product'>
<div class='product-img'>
<img src='product_images/$pro_image' style='max-height: 170px;' alt=''>
<div class='product-label'>
<span class='sale'>-30%</span>
<span class='new'>NEW</span>
</div>
</div></a>
<div class='product-body'>
<p class='product-category'>$cat_name</p>
<h3 class='product-name header-cart-item-name'><a href='product.php?p=$pro_id'>$pro_title</a></h3>
<h4 class='product-price header-cart-item-info'>$pro_price<del class='product-old-price'>$990.00</del></h4>
<div class='product-rating'>";
$rating_query = "SELECT ROUND(AVG(rating),1) AS avg_rating FROM reviews WHERE product_id='$pro_id '";
$run_review_query = mysqli_query($con,$rating_query);
$review_row = mysqli_fetch_array($run_review_query);
if($review_row > 0){
$avg_count=$review_row["avg_rating"];
$i=1;
while($i <= round($avg_count)){
$i++;
echo'
<i class="fa fa-star"></i>';
}
$i=1;
while($i <= 5-round($avg_count)){
$i++;
echo'
<i class="fa fa-star-o empty"></i>';
}
}
echo "</div>
<div class='product-btns'>
<button pid='$pro_id' id='wishlist' class='add-to-wishlist'><i class='fa fa-heart-o'></i><span class='tooltipp'>add to wishlist</span></button>
<button class='add-to-compare'><i class='fa fa-exchange'></i><span class='tooltipp'>add to compare</span></button>
<button class='quick-view'><i class='fa fa-eye'></i><span class='tooltipp'>quick view</span></button>
</div>
</div>
<div class='add-to-cart'>
<button pid='$pro_id' id='product' class='add-to-cart-btn block2-btn-towishlist' href='#'><i class='fa fa-shopping-cart'></i> add to cart</button>
</div>
</div>
</div>
";
}
;
}
?>
<!-- product -->
<!-- /product -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Section -->
<!-- NEWSLETTER -->
<!-- /NEWSLETTER -->
<!-- FOOTER -->
<?php
include "newslettter.php";
include "footer.php";
?>