I want to insert current time in database using mySQL function NOW() in Codeigniter\'s active record. The following query won\'t work:
$data = array(
This is the easy way to handle timestamp insertion
$data = array('created_on' => date('Y-m-d H:i:s'));