<html>
<head>
  <title>PHP Weather</title>
</head>
<body background="./pics/bak1.png" bgcolor=#cc3399>

<?php
/* $Id: demo.php,v 1.33 2000/11/27 07:53:02 gimpster Exp gimpster $
   Be sure to check out the newest version from
   http://www.sourceforge.net/projects/phpweather/ */
/* Renamed demo.php3 2001,07,11 16:00:00 and modified by Ian Cousins for use by PhoneNet */

include('./includes/phplocale_en.php3');
include('./includes/phpweather.php3');

$metar1 = get_metar('NZWN');
$metar2 = get_metar('NZAA');
$metar3 = get_metar('NZCH');
$metar4 = get_metar('NZDN');
/*$metar5 = get_metar('NZKT');*/
?>

<h1>New Zealand Main Centres - Weather</h1>

<h2>WELLINGTON</h2>
<p>The report below is the latest from Wellington, New Zealand.
<?
include('./includes/phplocale_en.php3');
pretty_print_metar($metar1, 'Wellington, New Zealand');
?>

<h2>AUCKLAND</h2>
<p>The report below is the latest from Auckland, New Zealand.
<?
include('./includes/phplocale_en.php3');
pretty_print_metar($metar2, 'Auckland, New Zealand');
?>

<h2>CHRISTCHURCH</h2>
<p>The report below is the latest from Christchurch, New Zealand.
<?
include('./includes/phplocale_en.php3');
pretty_print_metar($metar3, 'Christchurch, New Zealand');
?>

<!--h2>DUNEDIN</h2>
<p>The report below is the latest from Dunedin, New Zealand.
<?
//include('./includes/phplocale_en.php3');
//pretty_print_metar($metar4, 'Dunedin, New Zealand');
?>
--> 
<p>To use find out the weather in any other country go to <a
href="http://weather.noaa.gov/weather/ccworld.html">this</a> page.
There you'll be able to choose a country, and then choose a station
from a list of stations is that country.</p>



</body>
</html>
