How to pass a value from AppleScript to a web page?

I want to add the current temperature to a web page. Script Menu for Mac OS X 10.1, available from http://www.apple.com/applescript/script_menu/ , provides a convenient way to get the Current Temperature by Zipcode via the menu bar, by running the Apple Script installed in Macintosh HD/Library/Scripts/Internet Services/Current Temperature by Zipcode.scpt. This Apple Script uses a SOAP_call to get the current temperature for the specified zipcode from the Internet, and then places the resulting temperature in temp_F, which is then converted to a string.
How do I pass the temperature (temp_F) from the Apple Script so that it can be displayed on a web page?
Greg Coats
gregcoats@mac.com

Get the string (eg, “61º Farenheit”) and compose a html file… Then, serve it, if you wish it in your server, or open the file with your favourite browser… :rolleyes:

As part of a local, static page:

set temp_F to “61º Farenheit”

set the_HTML to "

" & temp_F & " "