I have this code in my cakephp project:
$this->data[\'MyObject\'][\'expire_date\'] = \'NOW()\';
and...
$this->MyObject-&g
For cakephp 2.x users:
$db = $this->MyObject->getDataSource(); $this->data['MyObject']['expire_date'] = $db->expression('NOW()');