Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TMP-2023-24-048
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maneesha Fernando
TMP-2023-24-048
Commits
4284322f
Commit
4284322f
authored
Oct 31, 2023
by
Maneesha Fernando
Committed by
GitHub
Oct 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete orders.php
parent
346ad2f6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
110 deletions
+0
-110
orders.php
orders.php
+0
-110
No files found.
orders.php
deleted
100644 → 0
View file @
346ad2f6
<?php
//if (session_status() !== PHP_SESSION_ACTIVE) {session_start();}
if
(
session_id
()
==
''
||
!
isset
(
$_SESSION
)){
session_start
();}
if
(
!
isset
(
$_SESSION
[
"username"
])){
header
(
"location:index.php"
);
}
include
'config.php'
;
?>
<!doctype html>
<html
class=
"no-js"
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<title>
My Orders || BOLT Sports Shop
</title>
<link
rel=
"stylesheet"
href=
"css/foundation.css"
/>
<script
src=
"js/vendor/modernizr.js"
></script>
</head>
<body>
<nav
class=
"top-bar"
data-topbar
role=
"navigation"
>
<ul
class=
"title-area"
>
<li
class=
"name"
>
<h1><a
href=
"index.php"
>
BOLT Sports Shop
</a></h1>
</li>
<li
class=
"toggle-topbar menu-icon"
><a
href=
"#"
><span></span></a></li>
</ul>
<section
class=
"top-bar-section"
>
<!-- Right Nav Section -->
<ul
class=
"right"
>
<li><a
href=
"about.php"
>
About
</a></li>
<li><a
href=
"products.php"
>
Products
</a></li>
<li><a
href=
"cart.php"
>
View Cart
</a></li>
<li
class=
"active"
><a
href=
"orders.php"
>
My Orders
</a></li>
<li><a
href=
"contact.php"
>
Contact
</a></li>
<?php
if
(
isset
(
$_SESSION
[
'username'
])){
echo
'<li><a href="account.php">My Account</a></li>'
;
echo
'<li><a href="logout.php">Log Out</a></li>'
;
}
else
{
echo
'<li><a href="login.php">Log In</a></li>'
;
echo
'<li><a href="register.php">Register</a></li>'
;
}
?>
</ul>
</section>
</nav>
<div
class=
"row"
style=
"margin-top:10px;"
>
<div
class=
"large-12"
>
<h3>
My COD Orders
</h3>
<hr>
<?php
$user
=
$_SESSION
[
"username"
];
$result
=
$mysqli
->
query
(
"SELECT * from orders where email='"
.
$user
.
"'"
);
if
(
$result
)
{
while
(
$obj
=
$result
->
fetch_object
())
{
//echo '<div class="large-6">';
echo
'<p><h4>Order ID ->'
.
$obj
->
id
.
'</h4></p>'
;
echo
'<p><strong>Date of Purchase</strong>: '
.
$obj
->
date
.
'</p>'
;
echo
'<p><strong>Product Code</strong>: '
.
$obj
->
product_code
.
'</p>'
;
echo
'<p><strong>Product Name</strong>: '
.
$obj
->
product_name
.
'</p>'
;
echo
'<p><strong>Price Per Unit</strong>: '
.
$obj
->
price
.
'</p>'
;
echo
'<p><strong>Units Bought</strong>: '
.
$obj
->
units
.
'</p>'
;
echo
'<p><strong>Total Cost</strong>: '
.
$currency
.
$obj
->
total
.
'</p>'
;
//echo '</div>';
//echo '<div class="large-6">';
//echo '<img src="images/products/sports_band.jpg">';
//echo '</div>';
echo
'<p><hr></p>'
;
}
}
?>
</div>
</div>
<div
class=
"row"
style=
"margin-top:10px;"
>
<div
class=
"small-12"
>
<footer
style=
"margin-top:10px;"
>
<p
style=
"text-align:center; font-size:0.8em;"
>
©
BOLT Sports Shop. All Rights Reserved.
</p>
</footer>
</div>
</div>
<script
src=
"js/vendor/jquery.js"
></script>
<script
src=
"js/foundation.min.js"
></script>
<script>
$
(
document
).
foundation
();
</script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment