-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReview_Page.php
More file actions
78 lines (67 loc) · 1.7 KB
/
Copy pathReview_Page.php
File metadata and controls
78 lines (67 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php session_start();?>
<html>
<?php require_once('PHP/login_session_functions.php');?>
<title>History 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 content-->
<form action="review_Validation.php" method="post" >
<table >
<tr>
<td>
<h2>Review</h2>
</td>
</td>
<tr>
<td>
<?php echo '<input type="hidden" name="reviewing" value="'.$_POST["This_reviewer_ID"].'">';?>
</td>
</tr>
<tr>
<td>Stars: </td>
<td>
<select name="stars">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="review">
</td>
</tr>
</table>
</form>
<!--END display content-->
</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>