up vote 0 down vote favorite
share [g+] share [fb]

I want to weather information in my website which should be autometically updated daily could you please help me script for weather information?

link|improve this question

11% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Go to Weather.com and sign up for a Weather Widget. This is a javascript script that you'll place on your page and is independent of the server side language used. Note also that you won't have to update the weather daily at all: the script will always just pull the current weather forecast. You will have to provide information about the area for which you want weather (e.g. zip/postal code).

link|improve this answer
Thank you very much. it is working successful – G-Rajendra Mar 1 '09 at 12:10
You are welcome. I'd appreciate it if you could upvote the answer and mark it as accepted if appropriate. – Mark Brittingham Mar 1 '09 at 17:14
feedback

If you want data automatically updated on a schedule, look into cron (on Unix systems) or its equivalent. If you're using a commercial web host, they should have a way to schedule programs; otherwise, look into your own system's documentation for scheduling scripts.

Next, you want to write a script that downloads the weather information at that moment. Allow this script to translate from the "source" format to your own format.

Have the scheduler run your script once a day.

link|improve this answer
feedback

An alternative to Weather.com is Weather Underground. This is a successful weather forecasting site that cover most of the world (you don't say where you need the forecast for). They have something free called Weather Stickers which offer live feeds of the current observed weather situation. You just embed an image in your page. Like this:

Click for London, United Kingdom Forecast

They also offer weather forecast XML feeds and API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.