echo " De Weersverwachting van het KNMI geldig tot morgen middernacht
";
?>
setlocale(LC_ALL, 'nl_NL.ISO_8859-1');
if (file_exists('ftp://ftp.knmi.nl/pub_weerberichten/basisverwachting.xml'))
{$xmlo = simplexml_load_file('ftp://ftp.knmi.nl/pub_weerberichten/basisverwachting.xml');
$kop = $xmlo->xpath("//field_content");
echo $kop[0],"
";
echo $kop[2],"
";
$tijd = $xmlo->xpath("//report_dtg_issued"); echo strftime("%A, %e %B %Y %H:%M", strtotime($tijd[0]))," uur";
}
?>