-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder_validation.php
More file actions
55 lines (38 loc) · 1.02 KB
/
Copy pathorder_validation.php
File metadata and controls
55 lines (38 loc) · 1.02 KB
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
<?php session_start();?>
<html>
<title>Ordered Page</title>
<link rel="stylesheet" href="style/profile_history.css"/>
<body>
<div class="main_wrapper">
<!--Header -->
<div class="header">
<!--Login and Sign up Links -->
<div class="Account_header"> (Welcome <?php echo $_SESSION['my_user_name'];?> ) <a href="index.php" > Logout</a> </div>
<h1 id="title">UBooks </h1>
</div>
<!--End Header -->
<!-- Menu Bar -->
<hr>
<div class="menu_bar">
<ul id="menu">
<li><a href="authentication_Page.php">Home</a></li>
<li><a href="profile_Page.php">Profile</a></li>
<li><a href="history_Page.php">History</a></li>
<li><a href="sell_Page.php">Sell</a></li>
</ul>
</div>
<hr>
<!--List of Books-->
<div class="content_wrapper">
<div id="content_area">
<!--display database content-->
<?php
require_once('PHP/order_functions.php');
order_book();
?>
</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>