-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·47 lines (43 loc) · 1.66 KB
/
index.php
File metadata and controls
executable file
·47 lines (43 loc) · 1.66 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
<?php
////////////////////////////////////////////////////
//
// WeatherOffice
//
// http://www.sourceforge.net/projects/weatheroffice
//
// Copyright (C) 04/2007 Mathias Zuckermann &
// Bernhard Heibler
//
// See COPYING for license info
//
////////////////////////////////////////////////////
include("weatherInclude.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<?php
echo "<title>Weather Office Home - $STATION_NAME</title>";
?>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<!--<META HTTP-EQUIV="Refresh" CONTENT="300"> -->
<link rel="shortcut icon" href="./favicon.ico" />
<link rel="stylesheet" href="woffice.css">
<link rel="microsummary" type="application/x.microsummary+xml" href="summary.php">
</head>
<frameset rows="*" cols="220, *">
<frameset rows="160, *" cols="1*">
<frame name="logo" scrolling="no" marginwidth="0" marginheight="0" src="logo.html" noresize frameborder="0">
<frame name="ctrl" scrolling="auto" marginwidth="2" marginheight="0" src="weather.php" noresize frameborder="0">
</frameset>
<frameset rows="78, *" cols="1*">
<frame name="header" scrolling="no" marginwidth="10" marginheight="14" src="header.php?lang=<?= $language ?>" noresize frameborder="0">
<frame name="main" scrolling="auto" marginwidth="10" marginheight="14" src="main.php?lang=<?= $language ?>" noresize frameborder="0">
</frameset>
<noframes>
<body>
<p>You need a browser that supports frame to view this page.</p>
</body>
</noframes>
</frameset>
</html>