ssskaya
09-24-2007, 11:17 PM
I am using the following lines in my rss parser file to get the date and title of entries:
$xhtml .= '<strong><font color="#555555">'.date('d M',strtotime($_date)).'</font></strong> - '.'<a href="'.$feed['LINK'].'">';
$xhtml .= $feed['TITLE'];
However, this returns today's date, and not the date the entry was posted.
How should I edit the file to correct this?
Thanks.
$xhtml .= '<strong><font color="#555555">'.date('d M',strtotime($_date)).'</font></strong> - '.'<a href="'.$feed['LINK'].'">';
$xhtml .= $feed['TITLE'];
However, this returns today's date, and not the date the entry was posted.
How should I edit the file to correct this?
Thanks.