I'm trying to write a query in Doctrine that will return records added within a certain numbr of days, I have this line in my query but doesn't work as expected:
$q->andWhere('g.date_added >= ?', array(strtotime('-'.$recent_interval.' day')));
date_added is a mySQL timestamp.
recent_interval is number of days.
I am using Doctrine-1.2.4 with Zend Framework 1.11.7
Appreciate the help.