Hi there,
I have been playing with Zend_Feed since yesterday. I finally managed to create my first rss feed. I have on problem though. This is how I convert mysql datetime to rss date time
           $newstime = $thisProduct->addDate;
           list($date, $hours) = split(' ', $newstime);
           list($year,$month,$day) = split('-',$date);
           list($hour,$min,$sec) = split(':',$hours);

           //returns the date ready for the rss feed
$date = date('r',mktime($hour, $min, $sec, $month, $day, $year)); but when I reach the feed, it shows the current date and time?
does it suppose to work like this?

Thanks
B

Reply via email to