-
Notifications
You must be signed in to change notification settings - Fork 12
/
products.php
171 lines (152 loc) · 11 KB
/
products.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
!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<!--jQuery library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!--Latest compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lifestyle Store-Products</title>
</head>
<body>
<?php include("includes/common.php");?>
<?php include("includes/header.php");?>
<?php include("check-if-added.php"); error_reporting(0);?>
<div class="container" id="content">
<div class="jumbotron home-spacer row_style" id="products-jumbotron">
<h1>Welcome to our Lifestyle Store!</h1>
<p>We have the best cameras, watches and shirts for you. No need to hunt around, we have all in one place.</p>
</div>
<hr>
<div class="row text-center" id="cameras">
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/camera1.png" alt="">
<div class="caption">
<h3>Cannon EOS </h3>
<p>Price: Rs. 36000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(1)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=1" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/camera2.png" alt="">
<div class="caption">
<h3>Nikon EOS </h3>
<p>Price: Rs. 40,000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(2)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=2" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
<p>Price: Rs. 45000.00</p>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/camera3.png" alt="">
<div class="caption">
<h3>Sony DSLR</h3><?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(3)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=3" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/camera4.png" alt="">
<div class="caption">
<h3>Olympus DSLR</h3>
<p>Price: Rs. 50000.00</p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(4)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=4" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
</div>
<div class="row text-center" id="watches">
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/watch1.png" alt="">
<div class="caption">
<h3>Titan Model #301 </h3>
<p>Price: Rs. 13000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(5)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=5" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/watch2.png" alt="">
<div class="caption">
<h3>Titan Model #201</h3>
<p>Price: Rs. 3000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(6)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=6" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/watch3.png" alt="">
<div class="caption">
<h3>HMT Milan</h3>
<p>Price: Rs. 8000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(7)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=7" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/watch4.png" alt="">
<div class="caption">
<h3>Faber Luba #111 </h3>
<p>Price: Rs. 18000.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(8)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=8" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
</div>
<div class="row text-center" id="shirts">
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/shirt1.png" alt="">
<div class="caption">
<h3>H&W </h3>
<p>Price: Rs. 800.00 </p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(9)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=9" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/shirt2.png" alt="">
<div class="caption">
<h3>Luis Phil</h3>
<p>Price: Rs. 1000.00</p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(10)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=10" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/shirt3.png" alt="">
<div class="caption">
<h3>John Zok</h3>
<p>Price: Rs. 1500.00</p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(11)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=11" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/shirt4.png" alt="">
<div class="caption">
<h3>Jhalsani</h3>
<p>Price Rs. 1300.00</p>
<?php if (!isset($_SESSION['email'])) { ?> <p><a href="login.php" role="button" class="btn btn-primary btn-block">Buy Now</a></p> <?php } else { if (check_if_added_to_cart(12)) { echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>'; } else { ?> <a href="cart-add.php?id=12" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a> <?php } } ?>
</div>
</div>
</div>
</div>
<hr>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>