forked from tejapaturu/simple-website-php-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrates.php
More file actions
66 lines (61 loc) · 1.33 KB
/
rates.php
File metadata and controls
66 lines (61 loc) · 1.33 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
<?php
session_start();
$title = "Rates";
$page = "rates";
include('header.php');
?>
<table cellspacing="1" cellpadding="20">
<br><br>
<caption>Rates</caption>
<thead>
<tr>
<th>Type</th>
<!-- <th>AID</th> -->
<th>Per night</th>
<th>Extra adult</th>
<th>Extra child</th>
</tr>
</thead>
<tbody>
<tr>
<td>Unpowered Small Camping Sites</th>
<!-- <td>US</td> -->
<td>$35.25</td>
<td>$10.00</td>
<td>$5.00</td>
</tr>
<tr>
<td>Unpowered Medium Camping Sites</th>
<!-- <td>UM</td> -->
<td>$40.50</td>
<td>$10.00</td>
<td>$5.00</td>
</tr>
<tr>
<td>Powered Small Camping Sites</th>
<!-- <td>PS</td> -->
<td>$50.25</td>
<td>$10.00</td>
<td>$5.00</td>
</tr>
<tr>
<td>Powered Medium Camping Sites</th>
<!-- <td>PM</td> -->
<td>$60.50</td>
<td>$10.00</td>
<td>$5.00</td>
</tr>
<tr>
<td>Caravan Sites</th>
<!-- <td>C</td> -->
<td>$100.00</td>
<td>Free</td>
<td>Free</td>
</tr>
</tbody>
</table>
<br>
<h3>Additional Information :</h3>
<p>The per night rate includes 2 adults or 1 adult + 1 child.</p>
<p>All prices include GST.</p>
<?php include('footer.php'); ?>