-
Notifications
You must be signed in to change notification settings - Fork 0
/
urunler.php
124 lines (83 loc) · 2.96 KB
/
urunler.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
<?php
include('header.php');
?>
<?php
if(session_id() == '' || !isset($_SESSION)){session_start();}
include 'config.php';
?>
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="img/favicon.png" type="image/png">
<title>GAMBIT Esports</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="vendors/linericon/style.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="vendors/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="vendors/nice-select/css/nice-select.css">
<link rel="stylesheet" href="vendors/animate-css/animate.css">
<link rel="stylesheet" href="vendors/flaticon/flaticon.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<br><br><br><br><br><br><br><br>
<section class="upcoming_games_area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<?php
$i=0;
$product_id = array();
$product_quantity = array();
$result = $mysqli->query('SELECT * FROM products');
if($result === FALSE){
die(mysql_error());
}
if($result){
while($obj = $result->fetch_object()) {
echo '<div class="large-4 columns">';
echo '<p><h3>'.$obj->product_name.'</h3></p>';
echo '<img src="images/products/'.$obj->product_img_name.'"/>';
/*echo '<p><strong>Product Code</strong>: '.$obj->product_code.'</p>';*/
echo '<p><strong>Description</strong>: '.$obj->product_desc.'</p>';
echo '<p><strong>Units Available</strong>: '.$obj->qty.'</p>';
echo '<p><strong>Price (Per Unit)</strong>: '.$currency.$obj->price.'</p>';
if($obj->qty > 0){
echo '<p><a href="update-cart.php?action=add&id='.$obj->id.'"><input type="submit" value="Add To Cart" style="clear:both; background: #0078A0; border: none; color: #fff; font-size: 1em; padding: 10px;" /></a></p>';
}
else {
echo 'Out Of Stock!';
}
echo '</div>';
$i++;
}
}
$_SESSION['product_id'] = $product_id;
echo '</div>';
echo '</div>';
?>
<div class="row" style="margin-top:10px;">
<div class="small-12">
</div>
</div></div>
</div>
</section>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<section class="testimonials_area section_gap">
<div class="container">
<div class="testi_slider owl-carousel">
<div class="testi_item">
</div>
</div>
</div>
</section>
<?php include('footer.php') ?>
</body>
</html>