-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.php
executable file
·124 lines (81 loc) · 2.26 KB
/
checkout.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
<!DOCTYPE>
<?php
session_start();
include("functionsc/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="indexc.php">Home</a><li>
<li><a href="allproductsc.php">All Products</a><li>
<li><a href="contact_usc.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:20px;padding:5px;line-height:35px;">
<?php
if(isset($_SESSION['customer_email']))
{
echo "<b>Welcome</b>"." ".$_SESSION['customer_email'];
}
else{
echo "<b>Welcome Guest!!</b>";
}
?>
</span>
</div>
<div id='products_box'>
<?php
if(!isset($_SESSION['customer_email'])){
include("login.php");
}
else{
include("payment.php");
}
?>
</div>
</div>
</div>
<!--content wrapper ends-->
<div id="footer">
<h2>©2017 by www.shopnix.com</h2>
</div>
</div>
<!--main wrapper ends-->
</body>
</html>