Free Temperature Widget
This is how your
COLLBRAN, Colorado temperature widget will look on your site.
The PHP code to
add it is shown below the widget. Enjoy!
|
Current Temp
° F
|
 |
|
|
|
|
|
There are many more
Colorado weather stations to choose from.
Place this PHP code on the top of your page.(before anything is written to the browser)
<?php if($_GET["setwxStation"]){ Header("Set-Cookie:wxStation={$_GET["setwxStation"]};expires=Friday, 16-Jan-2037 00:00:00 GMT;\n\n"); $wxStation = $_GET["setwxStation"]; } else { if($_COOKIE["wxStation"]){ $wxStation = $_COOKIE["wxStation"]; } else { // Show a default weather station to this user $wxStation = "
CBNC2
"; } } ?>
|
Place this PHP code where you want your widget to display.
<?php $wxStation = trim($wxStation); include("http://www.myfsbo.com/weather.php?forcewxStation=$wxStation"); ?>
|