-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.php
More file actions
32 lines (32 loc) · 774 Bytes
/
task.php
File metadata and controls
32 lines (32 loc) · 774 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Task Details</title>
</head>
<body>
<div id="header">
<p id="name">Project Social Computing - Task Details</p>
<a href="/index.html"><p id="useraccount">Home</p></a>
</div>
<div class="left">
<h4>Seller:</h4>
<p>45 Jobs completed</p>
<p>4.81 Average Rating</p>
</div>
<div class="right">
<?php
echo "<p>Jobid = " . $_GET["jobid"] . "</p>";
?>
<p>Please buy me 2 tickets for the concert of Linkin Park</p>
<h4>Facts:</h4>
<ul>
<li>Number of tickets: 2</li>
<li>Price per ticket: $45.00</li>
<li>Reward: $4.00</li>
<li>Due on: 12.11.2013</li>
</ul>
</div>
<?php include('footer.php') ?>
</body>
</html>