This repository has been archived by the owner on Oct 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.php
112 lines (112 loc) · 1.93 KB
/
table.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php include 'gori.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<?php include 'header.php'; ?>
<div class="content">
<table border="1" cellspacing="0">
<tr class="tableHeader">
<th>
Position
</th>
<th>
Name
</th>
<th>
Year
</th>
<th>
Rating
</th>
<th>
Duration
</th>
</tr>
<tr>
<td>
1
</td>
<td>
The Shawshank Redemption
</td>
<td>
1994
</td>
<td>
9.3
</td>
<td>
2h 22m
</td>
</tr>
<tr class="specialRow">
<td>
2
</td>
<td>
The Godfather
</td>
<td>
1972
</td>
<td>
9.2
</td>
<td>
2h 55m
</td>
</tr>
<tr>
<td>
3
</td>
<td>
The Godfather: Part II
</td>
<td>
1994
</td>
<td>
9.0
</td>
<td>
3h 22m
</td>
</tr>
<tr class="specialRow">
<td>
4
</td>
<td>
The Dark Knight
</td>
<td>
2008
</td>
<td>
8.9
</td>
<td>
2h 32m
</td>
</tr>
<tr>
<td>
5
</td>
<td>
Schindler's List
</td>
<td>
1993
</td>
<td>
8.9
</td>
<td>
3h 15m
</td>
</tr>
</table>
</div>
</BODY>
</HTML>