
Craig Vincent - 2008-11-10 00:57:43
Just a quick note that in the example script,
$weather_chile = new weather("UKXX1051", 3600, "C", $cachedir);
with an uppercase "C" still returns temperatures in farenheit, but changing to a lowercase "c" fixes the problem.
$weather_chile = new weather("UKXX1051", 3600, "c", $cachedir);
Minor I know :)
Cool script though!
Craig