vote up 1 vote down star

Hi,

my question is as follows:

assume there is a website called website.com/a

the website is being developed using PHP, Perl, Ruby and other languages.

i want to be able from my website to read this website pages, execute the code and then analyse the HTML result page tags and getting the content using PHP.

it's like reading news from some news websites and then displays it in my website in different format or different style.

thank you

flag

50% accept rate
2  
Also make sure you are allowed to get information from a certain website and then display it (albeit in a different format) on your own. Many websites (or owners of them) don't like this. – Bart K. Sep 30 at 17:12
1  
Before you embark on your journey make sure you do not steal copyrighted material. – Jacco Sep 30 at 17:26
Yeah sure, i will deal with open contents websites. thanks – bogha Sep 30 at 18:47
Yeah sure you will. – Ether Nov 1 at 2:27

1 Answer

vote up 4 vote down check

I'm not sure you understand this aspect of web programming, but you cannot access the server-side code which generated the HTML. You can of course parse the HTML which is returned from the server by using one of many HTML parsers.

That may or may not have been what you asked, because your question is a bit vague to me. Note that if you want to collect information from other web pages on your web page, you should make sure your web site doesn't make a request to those other web pages each time a user visits your site. (Phew, that was a handful!) You need to implement some sort of caching of the other web sites' content.

link|flag

Your Answer

Get an OpenID
or

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