On 2 Sep, 00:24, "Robert Gonzalez" <
robert.anthony.gonza...@gmail.com>
wrote:
> Track update times in a file or db.
>
pubDate and lastBuildDate are not required elements.
> On Mon, Sep 1, 2008 at 4:56 PM, Anthony <
anthony.kosed...@gmail.com> wrote:
>
> > Hey does someone know how to have a php script be able to tell if a
> > rss feed has been updated since the last time it had been ran ?
>
> --
> Robert A. Gonzalez
Using magpie RSS:
require('rss_fetch.inc');
$rss = fetch_rss($url);
if (md5($rss)!=md5($stored_rss)) {
// its changed...
}
C.