I'm working on a project that needs to watch another website for activity. I can go thru a logon, query and signon at regular intervals. But it occurs to me that you can just see if something new has happened by viewing the site.
So I was wondering if there is some PHP command to capture HTML source from an external website and then I'll search the html source for a number of images (or any related events, updates etc).
So from a PHP script I'd like to point it at an unrelated website and scrape the HTML source for a particular pages.
a little sumtum like....
$string get_html_source ('www.foo.bar/page001/bogus-news.html');
ideas?