Ah, they changed the way they pass the URL for the website.
I figured out how to do it, but I'm going to have to play with it to get everything right.
For starters I had to add this to the Example Script:
$ZipCode = InputBox("Zip code", "Please input your zip code")
$ZipCode2 = "<a href='http://www.zip-codes.com/zip-code/' class='bbc_url' title='External link' rel='nofollow external'>http://www.zip-codes.com/zip-code/"</a
> & $ZipCode
Global $sSource = BinaryToString(InetRead($ZipCode2))
$City = StringRegExp($sSource,'(?i)(?s)<tr valign="top"><td id="rowB"><a href="/zip_database_fields.asp#city" class="rowL" target="_blank">City:</a></td><td id="rowB"><a href="(.*?)">(.*?)</a>',1)
$State = StringRegExp($sSource,'(?i)(?s)<tr valign="top"><td id="rowA"><a href="/zip_database_fields.asp#statecode" class="rowL" target="_blank">State:</a></td><td id="rowA"><a href="(.*?)">(.*?)</a>',1)
$Url = 'http://www.weather.com/weather/today/' & $City[1] & '+' & $State[1] & '+' & $Zipcode
So I have the right URL now, and I can pull data, but it might take me a few days until I can sit down and setup all the StringRegExp.
If you want, you can always do it, it shouldn't be hard after that. All you have to do in the UDF for now is replace all the:
Global $sSource = BinaryToString(InetRead("<a href='http://www.weather.com/weather/today/' class='bbc_url' title='External link' rel='nofollow external'>http://www.weather.com/weather/today/"</a
> & $ZipCode))
To be:
Thanks for bringing this up, I will look into it.
Edited by Damein, 25 November 2011 - 08:14 PM.

Most recent sig. I made
YouTube Stand-Alone Playlist Manager:
Topic | Weather Desktop Widget:
Topic | Flash Memory Game:
Topic | Volume Control With Mouse / iTunes Hotkeys:
Topic | Weather program:
Topic | Paws & Tales radio drama podcast mini-player:
Topic | Quick Math Calculations:
Topic