-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocation.php
More file actions
56 lines (50 loc) · 1.96 KB
/
location.php
File metadata and controls
56 lines (50 loc) · 1.96 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
<?php
require_once("config.php");
printHeader();
echo <<<END
<h1>Travel/Accomodations</h1>
<p>
<a href="http://quartzmountainresort.com/" class="external" target="blank">Quartz Mountain Resort</a> is the host of Oklahoma Global Education Consortium 2009.
</p>
<p>
The following is a list of nearby accomodations.
<table id="hotels">
<caption> Table: Nearby Accomodations </caption>
<colgroup>
<col/>
<col/>
<col/>
<col id="Rooms" />
<col/>
</colgroup>
<thead>
<tr>
<th>Name</th><th>Address</th><th>Phone</th><th>Rate**</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://www.microtelinn.com" class="external" target="blank">Microtel</a></td><td>3210 N Main<br/>Altus, OK <br/> </td><td>580-379-9400</td><td>69.30 Double</td>
</tr>
<tr>
<td><a href="http://www.daysinn.com" class="external" target="blank">Days Inn</a></td><td>3202 N. Main Street<br/> Altus, OK <br/> </td><td>580-846-9049</td><td>$50 single<br/>$55 double</td>
</tr>
<tr>
<td><a href="http://www.bestwestern.com" class="external" target="blank">Best Western</a></td><td>2400 N. Main<br/>Altus, OK</td><td>580-482-9300</td><td>$60</td>
</tr>
<tr>
<td><a href="http://www.ramada.com" class="external" target="blank">Ramada Inn</a></td><td>2515 E. Broadway<br/>Altus, OK </td><td>1-800-272-6232<br/>580-477-3000</td><td>$58 single<br/>$68 double</td>
</tr>
<tr>
<td><a href="http://www.travelok.com/toStay/stayDetail.asp?id=1+5U+5066" class="external" target="blank">Country Charm <br>Bed and Breakfast</a></td><td>Rt 1 Box 21A<br>Lonewolf, OK <br> [<a href="http://maps.google.com/maps?saddr=34.899307040589754,-99.2817735671997&daddr=2801 North Main, Altus, OK&hl=en">Directions to Moot</a>]</td><td>580-846-9049</td><td>$59</td>
</tr>
</tbody>
<tfoot>
<td colspan=5>**Government Room Rates available upon presentation of ID<br/>
</td>
</tfoot>
</table>
</p>
END;
printFooter();
?>