-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
executable file
·327 lines (281 loc) · 14.4 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Home</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/home.css" rel="stylesheet">
</head>
<body>
<?php
$Conn = mysql_connect('localhost', 'root', "") or die(mysql_error());
mysql_select_db('myDB');
session_start();
?>
<div class="wrap">
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="myprofile.php">
<?php
$username = $_SESSION["username"];
$query = "Select * from Users where username = '$username';";
$res = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_assoc($res);
$fname = $row['fname'];
$lname = $row['lname'];
$_SESSION['fname']=$fname;
$_SESSION['lname']=$lname;
echo $fname; ?> <?php echo $lname;
?>
</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="row carousel-holder">
<div class="col-md-12">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img class="slide-image" src="image1.jpg" alt="">
</div>
<div class="item">
<img class="slide-image" src="image3.png" alt="">
</div>
<div class="item">
<img class="slide-image" src="image2.jpg" alt="">
</div>
</div>
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
</div>
<?php
$query = "SELECT stock FROM Products WHERE pid = 1";
$res = mysql_query($query)or die(mysql_error());
$staff = mysql_fetch_assoc($res);
$result = $staff['stock'];
?>
<div class="row">
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="mac.jpg" alt="macpro 13" style="width:320px;height:150px;">
<div class="caption">
<h4 class="pull-right">$499.99</h4>
<?php if($result > 0){ ?>
<a href="confirm.php?name1=macbook 13 inch laptop&price=500" class="buybutton"> Buy</a>
<?php } else { ?>
<a href="" class="buybutton">Out of stock</a>
<?php } ?>
<!-- <a href="confirm.php" class="buybutton">Buy</a> -->
</h4>
<p>macbook 13 inch laptop.</p></br>
</div>
<div class="ratings">
<?php
$Stock = $result." in stock";
echo"$Stock";
?>
<p>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</p>
</div>
</div>
</div>
<?php
$query = "SELECT stock FROM Products WHERE pid = 2";
$res = mysql_query($query)or die(mysql_error());
$staff = mysql_fetch_assoc($res);
$result = $staff['stock'];
?>
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="canon.jpg" alt="canon pro cam" style="width:320px;height:150px;">
<div class="caption">
<h4 class="pull-right">$299.99</h4>
<?php if($result > 0){ ?>
<a href="confirm.php?name1=Canon professional camera&price=300" class="buybutton">Buy</a>
<?php } else { ?>
<a href="" class="buybutton">Out of stock</a>
<?php } ?>
</h4>
<p>Canon professional camera.</p>
</div>
<div class="ratings">
<?php
$Stock = $result." in stock";
echo"$Stock";
?>
<p>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star-empty"></span>
</p>
</div>
</div>
</div>
<?php
$query = "SELECT stock FROM Products WHERE pid = 3";
$res = mysql_query($query)or die(mysql_error());
$staff = mysql_fetch_assoc($res);
$result = $staff['stock'];
?>
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="guess.jpg" alt="guess purse" style="width:320px;height:150px;">
<div class="caption">
<h4 class="pull-right">$74.99</h4>
<?php if($result > 0){ ?>
<a href="confirm.php?name1=Guess women genuine leather purse&price=75" class="buybutton">Buy</a>
<?php } else { ?>
<a href="" class="buybutton">Out of stock</a>
<?php } ?>
</h4>
<p>Guess women genuine leather purse.</p>
</div>
<div class="ratings">
<?php
$Stock = $result." in stock";
echo"$Stock";
?>
<p>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star-empty"></span>
</p>
</div>
</div>
</div>
<?php
$query = "SELECT stock FROM Products WHERE pid = 4";
$res = mysql_query($query)or die(mysql_error());
$staff = mysql_fetch_assoc($res);
$result = $staff['stock'];
?>
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="ralph.jpg" alt="Ralph Lauren shirt" style="width:320px;height:150px;">
<div class="caption">
<h4 class="pull-right">$49.99</h4>
<?php if($result > 0){ ?>
<a href="confirm.php?name1=Ralph Lauren polo shirt&price=50" class="buybutton">Buy</a>
<?php } else { ?>
<a href="" class="buybutton">Out of stock</a>
<?php } ?>
</h4>
<p>Ralph Lauren polo shirt.</p>
</div>
<div class="ratings">
<?php
$Stock = $result." in stock";
echo"$Stock";
?>
<p>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star-empty"></span>
<span class="glyphicon glyphicon-star-empty"></span>
</p>
</div>
</div>
</div>
<?php
$query = "SELECT stock FROM Products WHERE pid = 5";
$res = mysql_query($query)or die(mysql_error());
$staff = mysql_fetch_assoc($res);
$result = $staff['stock'];
?>
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="fred.jpg" alt="Fred Perry shoes" style="width:320px;height:150px;">
<div class="caption">
<h4 class="pull-right">$94.99</h4>
<?php if($result > 0){ ?>
<a href="confirm.php?name1=Fred Perry men shoes&price=95" class="buybutton">Buy</a>
<?php } else { ?>
<a href="" class="buybutton">Out of stock</a>
<?php } ?>
</h4>
<p>Fred Perry men shoes.</p>
</div>
<div class="ratings">
<?php
$Stock = $result." in stock";
echo"$Stock";
?>
<p>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star-empty"></span>
</p>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 col-md-4">
</div>
</div>
</div>
</div>
</div>
<div class="container">
<hr>
<footer>
<div class="row">
<div class="col-lg-12">
<p>Copyright © A.Rahman ElZamzamy & A.Rahman Kamel</p>
</div>
</div>
</footer>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</div>
</body>
</html>