div#weatherの内部には、Google の天気 XML を呼び出す PHP があります。古くなることを除けば、うまく機能します。新しい XML を取得するために、600000 ミリ秒ごとに div をリロードしたいと思います。
私は JavaScript タイマーのパスをたどっていましたが、それには外部 URL が必要なようです。
PHP を外部ファイルに格納する必要がある場合、それは大したことではなく、理想的ではありません。
<div id="weather">
<?php
$URL = "http://www.google.com/ig/api?weather=60618";
$dataInISO = file_get_contents($URL);
$dataInUTF = mb_convert_encoding($dataInISO, "UTF-8", "ISO-8859-2");
$xml = simplexml_load_string($dataInUTF);
$current = $xml->xpath("/xml_api_reply/weather/current_conditions");
?>
<div class="weather-<?php $weather = $current[0]->condition['data']; $weatherclass = str_replace(' ','-',$weather); $weatherclass = strtolower($weatherclass); echo $weatherclass; ?>"> </div>
<div id="temp"><?= $current[0]->temp_f['data'] ?>°</div>
<div id="condition"><?= $current[0]->condition['data'] ?></div>
</div>