Hi Scott,
I think what you want to use is the advforecast2.php script (
http://saratoga-weather.org/scripts-carterlake.php#advforecast ) .. that will provide you with the icons/temps/text and you can use it in your page... but... there's a catch .. it has to run as a PHP script, and normally .html pages aren't parsed for PHP.
If you want a .html page to include a PHP page, you'll have to use a Server-Side-Include like
<!--#include virtual="fcst.php" -->
In a fcst.php page, have it just have
<?php
$doPrintNWS = false;
include("advforecast2.php");
print $Status;
?>
<table width="640" style="border: none;">
<tr align="center" style="background-color: #FFFFFF;">
<td><b>National Weather Service Forecast for: </b><span style="color: green;">
<?php echo $forecastcity; ?></span><br />
Issued by: <?php echo $forecastoffice; ?>
</td>
</tr>
<tr>
<td align="center">Updated: <?php echo $forecastupdated; ?>
</td>
</tr>
<tr>
<td align="center">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign ="top" align="center">
<?php
for ($i=0;$i<count($forecasticons);$i++) {
print "<td style=\"width: 11%;\"><span style=\"font-size: 8pt;\">$forecasticons[$i]</span></td>\n";
}
?>
</tr>
<tr valign ="top" align="center">
<?php
for ($i=0;$i<count($forecasticons);$i++) {
print "<td style=\"width: 11%;\">$forecasttemp[$i]</td>\n";
}
?>
</tr>
</table>
</td>
</tr>
</table>
and that will cause the forecast to be fetched by advforecast2.php, printed in fcst.php and directly included in your html page where you placed the <!--#include virtual="fcst.php" -->
Don't forget to configure advforecast2.php with your NOAA zone and point-printable forecast URL, and to have the carterlake-icons.zip uploaded to your site as forecast/images/
Instructions are on the scripts page cited above...
Best regards,
Ken