Basic Website Question

Hutchy

Lord Nagafen Raider
75
3
Very simple website question I am trying to link the follow linkhttp://www.selkent.org.uk/Results%20...bleoverall.htm. I want to basically add the league table which in a ideal world will update as the league update the table as a direct image on our website. At the moment I just have a basic html link to the page
I think you are asking that you want to embed the table into your own website. For that you can use a simple iframe tag:http://www.w3schools.com/tags/tag_iframe.asp

This will make it load their website in your website!
 

wanand

Bronze Knight of the Realm
281
28
That works in a way, but that loads the whole page in the small iframe I just want the small table part, I am beginning to think it is just not possible, thanks for the answer though appreciate it
 

Hutchy

Lord Nagafen Raider
75
3
That works in a way, but that loads the whole page in the small iframe I just want the small table part, I am beginning to think it is just not possible, thanks for the answer though appreciate it
If you want to pull certain parts out of it, you'll need to scrape the page to get your info, using something like CURL if you use PHP.
 

mixtilplix

Lord Nagafen Raider
1,295
109
Like Wanand mentioned, you could use an iframe to pull in the page and then use css rules to remove portions of the page you do not want to show up.

Another option would be to pull it in via cross domain ajax. Or you can just take a screen shot and update the page every day manually.
 

Luthair

Lord Nagafen Raider
1,247
85
Like Wanand mentioned, you could use an iframe to pull in the page and then use css rules to remove portions of the page you do not want to show up.

Another option would be to pull it in via cross domain ajax. Or you can just take a screen shot and update the page every day manually.
Your CSS wouldn't apply to the iframe.