-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·137 lines (87 loc) · 2.55 KB
/
index.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
<!DOCTYPE>
<?php
session_start();
include("functions/functions.php");
?>
<html>
<head>
<title>MY online store</title>
<link rel="stylesheet" href="style.css" media="all">
</head>
<body>
<!--main wrapper starts-->
<div class="main_wrapper">
<!--header wrapper starts-->
<div class="header_wrapper">
<img id="logo" src="images\logo.png">
<img id="banner" src="images\banner2.jpg">
</div>
<!--header wrapper ends-->
<!--menubar starts-->
<div class="menubar">
<ul id="menu">
<li><a href="index.php">Home</a><li>
<li><a href="allproducts.php">All Products</a><li>
<li><a href="register.php">Sign Up</a><li>
<li><a href="contact_us.php">Contact Us</a><li>
</ul>
<div id="form">
<form method="get" action="results.php" enctype="multipart/form-data">
<input id="text" type="text" placeholder="search item" name="user_query">
<input id="search" type="submit" value="Search" name="search">
</form>
</div>
</div>
<!--menubar ends-->
<!--content wrapper starts-->
<div class="content_wrapper">
<div id="sidebar">
<div id="sidebar-title">CATEGORIES</div>
<ul id="cats">
<?php getcats(); ?>
</ul>
<div id="sidebar-title">AUTHORS</div>
<ul id="cats">
<?php getauthor(); ?>
</ul>
</div>
<div id="content_area">
<?php get_cart(); ?>
<div id="shopping_cart">
<span style="float:right;font-size:18px;padding:5px;line-height:35px;">
<?php
if(isset($_SESSION['customer_email']))
{
echo "<b style='color:darkturquoise;font-size:26px'>Welcome:-</b>"." ".$_SESSION['customer_email'];
}
else{
echo "<b>Welcome Guest!!</b>";
}
?>
<?php
if(!isset($_SESSION['customer_email'])){
echo "<a href='checkout.php' style='color:orange;'>Login</a>";
}
else{
echo "<a href='logout.php' style='color:orange;'>Logout</a>";
}
?>
</span>
</div>
<div id='products_box'>
<?php
get_pro();
get_cat_pro();
get_author_pro();
?>
</div>
</div>
</div>
<!--content wrapper ends-->
<div id="footer">
<h2>©2017 by www.shopnix.com</h2>
</div>
</div>
<!--main wrapper ends-->
</body>
</html>