-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_products.php
executable file
·84 lines (63 loc) · 2.43 KB
/
all_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
<!DOCTYPE>
<?php
include ("functions/functions.php");
?>
<html>
<head>
<title>My Online Shop</title>
</head>
<body>
<link rel="stylesheet" href="styles/style1.css" media="all"/>
<h1>Hello Kieu!</h1>
<div class="main_wrapper"/>
<div class="header_wrapper">
<a href="index.php"><img id="logo" src="images/logo.jpg"/></a>
<!-- <img id="banner" src="images/banner.jpg"/> -->
</div>
<div class="menubar">
<ul id="menu">
<li><a href="index.php">Home</a></li>
<li><a href="all_product.php">All Products</a></li>
<li><a href="customer/my_account.php">My Account</a></li>
<li><a href="#">Sign Up</a></li>
<li><a href="cart.php">Shopping Cart</a></li>
<li><a href="#">About Us</a></li>
</ul>
<div id="form" class="form">
<form method="get" action="result.php" enctype="multipart/form-data">
<input type="text" name="user_query" placeholder="Search a Product"/>
<input type="submit" name="search" value="search"/>
</form>
</div>
</div>
<!--Content wrapper starts -->
<div class="content_wrapper">
<div id="siderbar">
<div id="siderbar_title">Categories</div>
<ul id="cats">
<?php getCats(); ?>
</ul>
<div id="siderbar_title">Brands</div>
<ul id="cats">
<?php getBrands(); ?>
</ul>
</div>
<div id="content_area">
<div id="shopping_cart">
<span style="float: right; font-size: 18px; padding:5px; line-height: 40px;">
Welcome Guest! <b style="color: yellow">Shopping Cart</b>-Total Items: Total Price: <a href="cart.php" style="color: yellow">Go To Cart</a>
</span>
</div>
<div id="products_box">
<?php getPro(); ?>
</div>
</div>
</div>
<!--Content wrapper ends -->
<div id="footer">
<h2 style="text-align:center; padding-top: 30px">© 2020 by www.kieu.com</h2>
</div>
</div>
</div>
</body>
</html>