uk.sci.weather (UK Weather) (uk.sci.weather) For the discussion of daily weather events, chiefly affecting the UK and adjacent parts of Europe, both past and predicted. The discussion is open to all, but contributions on a practical scientific level are encouraged.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Old February 26th 05, 05:56 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 3,659
Default [OT] Davis data onto web page

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?

Thanks for any help.

Phil

--



  #2   Report Post  
Old February 26th 05, 06:25 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Nov 2004
Posts: 489
Default [OT] Davis data onto web page

Phil Layton wrote:
Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?

Thanks for any help.

Phil


You could use an inline frame in the master page IFRAME ... /IFRAME
where the source for that would be the davis page.

My webcam uses that method so that the webcam updates but the 'todays
weather' page in which it sits does not.

HTH

--
Gianna Stefani

www.buchan-meteo.org.uk
  #3   Report Post  
Old February 26th 05, 06:25 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Nov 2004
Posts: 489
Default [OT] Davis data onto web page

Phil Layton wrote:
Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?

Thanks for any help.

Phil


You could use an inline frame in the master page IFRAME ... /IFRAME
where the source for that would be the davis page.

My webcam uses that method so that the webcam updates but the 'todays
weather' page in which it sits does not.

HTH

--
Gianna Stefani

www.buchan-meteo.org.uk
  #4   Report Post  
Old February 26th 05, 06:25 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Nov 2004
Posts: 489
Default [OT] Davis data onto web page

Phil Layton wrote:
Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?

Thanks for any help.

Phil


You could use an inline frame in the master page IFRAME ... /IFRAME
where the source for that would be the davis page.

My webcam uses that method so that the webcam updates but the 'todays
weather' page in which it sits does not.

HTH

--
Gianna Stefani

www.buchan-meteo.org.uk
  #5   Report Post  
Old February 26th 05, 06:25 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Nov 2004
Posts: 489
Default [OT] Davis data onto web page

Phil Layton wrote:
Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?

Thanks for any help.

Phil


You could use an inline frame in the master page IFRAME ... /IFRAME
where the source for that would be the davis page.

My webcam uses that method so that the webcam updates but the 'todays
weather' page in which it sits does not.

HTH

--
Gianna Stefani

www.buchan-meteo.org.uk


  #6   Report Post  
Old February 26th 05, 06:27 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 319
Default [OT] Davis data onto web page

Phil Layton wrote:

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?


There's an easy (but not very accessible) way using the IFRAME element.
An IFRAME is an inline frame and you would need to add the following
code to get it to work:

IFRAME SRC="foo.htm" WIDTH="300" HEIGHT="100"/IFRAME

SRC="..." is the file you want to include, WIDTH and HEIGHT should be
intuitive.

The best way would be to use server-side-scripting, such as PHP. I use
PHP for my website, but you have to check that your ISP or hosting
company supports PHP first. If you can do PHP, just add the following
wherever you want to include your .htm file:

?php include ("foo.htm"); ?

The benefit to this is that foo.htm is actually inserted inline into the
page, rather than into an extra frame.

--
Jonathan Stott
Canterbury Weather: http://www.canterburyweather.co.uk/
  #7   Report Post  
Old February 26th 05, 06:27 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 319
Default [OT] Davis data onto web page

Phil Layton wrote:

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?


There's an easy (but not very accessible) way using the IFRAME element.
An IFRAME is an inline frame and you would need to add the following
code to get it to work:

IFRAME SRC="foo.htm" WIDTH="300" HEIGHT="100"/IFRAME

SRC="..." is the file you want to include, WIDTH and HEIGHT should be
intuitive.

The best way would be to use server-side-scripting, such as PHP. I use
PHP for my website, but you have to check that your ISP or hosting
company supports PHP first. If you can do PHP, just add the following
wherever you want to include your .htm file:

?php include ("foo.htm"); ?

The benefit to this is that foo.htm is actually inserted inline into the
page, rather than into an extra frame.

--
Jonathan Stott
Canterbury Weather: http://www.canterburyweather.co.uk/
  #8   Report Post  
Old February 26th 05, 06:27 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 319
Default [OT] Davis data onto web page

Phil Layton wrote:

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?


There's an easy (but not very accessible) way using the IFRAME element.
An IFRAME is an inline frame and you would need to add the following
code to get it to work:

IFRAME SRC="foo.htm" WIDTH="300" HEIGHT="100"/IFRAME

SRC="..." is the file you want to include, WIDTH and HEIGHT should be
intuitive.

The best way would be to use server-side-scripting, such as PHP. I use
PHP for my website, but you have to check that your ISP or hosting
company supports PHP first. If you can do PHP, just add the following
wherever you want to include your .htm file:

?php include ("foo.htm"); ?

The benefit to this is that foo.htm is actually inserted inline into the
page, rather than into an extra frame.

--
Jonathan Stott
Canterbury Weather: http://www.canterburyweather.co.uk/
  #9   Report Post  
Old February 26th 05, 06:27 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 319
Default [OT] Davis data onto web page

Phil Layton wrote:

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.

Weatherlink uploads the current conditions as a separate .htm file.(which on
its own displays OK)

Is there a way I can display this file within another .htm file without the
hyperlink ?


There's an easy (but not very accessible) way using the IFRAME element.
An IFRAME is an inline frame and you would need to add the following
code to get it to work:

IFRAME SRC="foo.htm" WIDTH="300" HEIGHT="100"/IFRAME

SRC="..." is the file you want to include, WIDTH and HEIGHT should be
intuitive.

The best way would be to use server-side-scripting, such as PHP. I use
PHP for my website, but you have to check that your ISP or hosting
company supports PHP first. If you can do PHP, just add the following
wherever you want to include your .htm file:

?php include ("foo.htm"); ?

The benefit to this is that foo.htm is actually inserted inline into the
page, rather than into an extra frame.

--
Jonathan Stott
Canterbury Weather: http://www.canterburyweather.co.uk/
  #10   Report Post  
Old February 26th 05, 08:03 PM posted to uk.sci.weather
external usenet poster
 
First recorded activity by Weather-Banter: Jul 2003
Posts: 389
Default [OT] Davis data onto web page

On Sat, 26 Feb 2005 18:56:59 -0000, "Phil Layton"
wrote:

Ive been playing around with trying to get the Davis weather station data
displayed on my web page without needing to go through a separate hyperlink.


There's no real need to use frames or anything related unless you
specially like the look of the default WL page. For text values of
weather readings just create your own WL template and have that parsed
and uploaded regularly by WL. If you want graphics then have the
relevant graphic images uploaded regularly by a WL profile and simply
incorporate them into a web page of your own design. Or you can mix
and match the two approaches. If this doesn't make sense then there's
some reasonable help on the WL v5.5 Help screens. (The v5.5 Help is a
significant improvement on previous WL versions).

JGD
www.weatherstations.co.uk


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Davis WMII / Weatherlink / Web page tags Jim Smith[_4_] uk.sci.weather (UK Weather) 9 November 19th 09 04:08 PM
The Idsos' co2science web site has an error in the MSU data calculation page Eric Swanson sci.geo.meteorology (Meteorology) 3 September 1st 04 12:49 AM
Davis Weatherlink Publishing Data on Web Ray uk.sci.weather (UK Weather) 2 August 2nd 04 09:23 PM
Apologies for a strange post yesterday - then onto tomorrows low Pete B uk.sci.weather (UK Weather) 0 July 6th 04 09:11 PM
Onto some snow! Wijke Ruiter uk.sci.weather (UK Weather) 2 September 4th 03 09:40 AM


All times are GMT. The time now is 12:34 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Weather Banter.
The comments are property of their posters.
 

About Us

"It's about Weather"

 

Copyright © 2017