-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.php
92 lines (79 loc) · 3 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
<!DOCTYPE>
<?php
session_start();
include ("functions/functions.php");
?>
<html>
<head>
<title> My Online Store</title>
<link rel="stylesheet" href="css/style.css" media="all"/>
</head>
<body>
<div class="main_wrapper">
<!--Header starts here-->
<div class="header_wrapper">
<img id="logo" src="img/logo.jpg"/>
<img id="banner" src="img/logo.jpg"/>
</div>
<!--Header ends here-->
<!--Menubar starts here-->
<div class="menubar">
<ul id="menu">
<li><a href="http://localhost/ecommerce/">Home</a> </li>
<li><a href="http://localhost/ecommerce/allproducts.php">Products</a> </li>
<li><a href="#">My Account</a> </li>
<li><a href="#">#</a> </li>
<li><a href="#">Shopping Cart</a> </li>
<li><a href="#">Contact Us</a> </li>
<div id="form">
<form method="get" action="results.php" enctype="multipart/form-data">
<input type="text" name="user_query" placeholder="Search a Product" />
<input type="submit" name="search" value="Search"/>
</form>
</div>
</ul>
</div>
<!--Menubar ends here-->
<!--Content starts here-->
<div class="content_wrapper">
<div id="sidebar">
<div id="sidebar_title">Categories </div>
<ul id="categories">
<?php getCategories();?>
</ul>
<div id="sidebar_title">Brands </div>
<ul id="categories">
<?php getBrands();?>
</ul>
</div>
<div id="content_area">
<?php cart(); ?>
<div id="shopping_cart">
<span style="float:right">
Welcome Guest!
<b style="color:yellow">Shopping Cart - </b>
Total Items: <?php getTotalItems(); ?> Total Price: $
<?php getTotalPrice(); ?>
<a href="cart.php"> Go to Cart</a></span>
</div>
<div id="products_box">
<?php
if(!isset($_SESSION['customer_email'])){
include("customer_login.php");
}else{
include("payment.php");
}
//getCheckoutContent();
?>
</div>
</div>
</div>
<!--Content ends here-->
<!--Footer starts here-->
<div id="footer">
<h2 style="text-align:center; padding-top:30px;">© 2017 by Alejandro Vargas</h2>
</div>
<!--Footer ends here-->
</div>
</body>
</html>