-
Notifications
You must be signed in to change notification settings - Fork 11
/
list_housing.php
79 lines (69 loc) · 3.29 KB
/
list_housing.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
<?php
session_start();
?>
<html>
<head>
<title>JHU SSEP housing list</title>
<link href="css/homepage.css" type="text/css" rel="stylesheet"/>
<script type="text/JavaScript" src="js/mainmenu.js"></script>
<script type="text/JavaScript" src="js/time.js"></script>
<script type="text/JavaScript" src="js/top.js"></script>
<script type="text/JavaScript" src="js/SortByPrice.js"></script>
</head>
<body>
<?php include 'menu.php'; ?>
<!--2 cover image part-->
<div id="top" class="container" style="margin-top: 30px;">
<!--border--><div style="height: 40px;"></div>
<img src="images/jhu02.jpg" alt="image loading failure" style="width: 100%" />
<div class="text-onimage" style="width: 70%;height: 70%;left: 15%;top: 18%; margin-right: auto;text-align: center;padding: 0;">
<h1 style="font-size: 350%;font-weight: 800;position: absolute;bottom: 50%;right: 50%;margin-right: -170px; margin-bottom: -45px;">SELL/BUY</h1>
</div>
<div class="container-end" style="height: 30px;"></div>
</div>
<!--3 list part-->
<div id="description" class="container">
<!--border--><div style="height: 40px;"></div>
<div class="container_title">
<h1>Housing</h1>
</div>
<!--start--><div class="container-start"></div>
<div class="container_content">
<div class="choice_btn choice_list" >
<span class="span_a btn_rightalign" onclick="sortTable()"><strong>Sort By Price</strong></span>
<table id="myTable">
<tr>
<th>Date</th>
<th>Description</th>
<th>Price</th>
</tr>
<script>
//For certain list, use the template numberlist(string title_name,string src,int price,int month,int day),default year in 2019, time default in 12:27:36 PM. title of time is different
numberlist("Housing product","list_want_rentpost.php",600,3,2);
numberlist("Housing product","list_want_rentpost.php",610,1,1);
numberlist("Housing product","list_want_rentpost.php",620,2,9);
numberlist("Housing product","list_want_rentpost.php",630,9,9);
numberlist("Housing product","list_want_rentpost.php",640,10,10);
//we only provide a template, all contents are randomed achieved, things change every fresh.
randomlist("Housing product","list_want_rentpost.php",600);
</script>
</table>
<span class="span_a btn_rightalign" style="" onclick="topFunction()" >go top</span>
</div>
</div>
<!--end--><div class="container-end"></div>
</div>
<!--5 go up menu-->
<div class="goup">
<button type="button" class="dropbtn"><a href="#top"><img src="images/goup.png" alt="TOP" height="40" width="40"/><br/>TOP</a></button>
<div class="goup-menu">
<a href="#description" style="padding: 10 10px;">List</a>
</div>
</div>
</body>
<footer id="copyright"align="center" style="padding: 10 20 10 20px; min-width: 700px;overflow-x: hidden;">
<span id="de" style="float: left;">CLOCK</span>
©:DC Student Secondhand Exchange Platform 2019
<span id="stay" style="float: right;">CLOCK</span>
</footer>
</html>