views:

152

answers:

3

What I must to learn to write php web-site grabber (parser)?

It must collect information from other websites, such as as weather forecast, wiki "on this day", some news and other useful and interesting "every day" information!

what i must to read for writing m3u player on php?

sorry for my bad english
+6  A: 

php's XML manipulation APIs are good to extract data from websites. If the websites you want to scrape are not valid (X)HTML, you might run into some problems, though.

BTW: the term you are looking for is scraping. Take a look at this post on SO and at PHP Simple HTML Dom Parser.

middus
+1 for taking the time to understand the question and provide a useful answer :) I hope that you quickly gain enough rep to edit questions.
Tim Post
Thanks for your kind feedback. I appreciate it. :)
middus
+1 for not suggesting Regex
Gordon
A: 

Although Website scrapping is always seems to be unintentional yet Simple HTML DOM Parser can help you a lot.

Guru
+2  A: 

I am obligated to say, avoid regular expressions :)

Tim Post