Thanks. I ended up writing my own script to find the data since all I really wanted was the text description of the weather (sunny, overcast, etc). I didn't want all the technical stuff.
That Boy Genius site was good since it listed that weather types that I was looking for.
Here is the script that I wrote:
<?
$page = "http://www.srh.noaa.gov/data/forecasts/WAZ034.php?warncounty=WAC063&city=Spokane";
$handle = fopen($page, "r");
$toFind = '<td class="big" width="120" align="center">';
$flag = false;
while (!feof($handle) && $flag != true)
{
$line = trim(fgets($handle, 4096));
if (left($line, 43) == $toFind)
{
$trueLine = $line;
$flag = true;
}
}
$betaLine = substr($trueLine, 43);
$pos = strpos($betaLine, '<');
print "\n";
$currentWeather = left($betaLine, $pos);
echo $currentWeather;
?>
<?
function left ($str, $howManyCharsFromLeft)
{
return substr ($str, 0, $howManyCharsFromLeft);
}
?>
It works great but any comments on how to better it would be helpful.