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
|
<?
include_once("weather.class.php");
$weather = new getWeather();
$weather->dbUser="root";
$weather->dbPass="";
$weather->dbName="db_name";
$weather->cityCode="on-82";
echo "<table cellspacing=0 cellpadding=3>";
if ($weather->fetchData()){
echo "<tr><td colspan=3 align=center>\n\n".$weather->showWeather()."\n</td></tr>";
}
$weather->cityCode="bc-74";
$weather->dispFormat=1;
if ($weather->fetchData()){
echo "<tr valign=top><td>\n\n".$weather->showWeather()."\n</td>";
}
$weather->cityCode="nf-24";
$weather->dispFormat=2;
$weather->longText=true;
if ($weather->fetchData()){
echo "<td>\n\n".$weather->showWeather()."\n</td>";
}
$weather->cityCode="nu-21";
if ($weather->fetchData()){
echo "<td>\n\n".$weather->showCurrent()."\n</td></tr>\n";
}
echo "</table>";
?>
|