i have some data in my database mysql, which i receive with query in my model
$row = $this->fetchRow('id ='.$id);
return $row;
one of the column in my database table store date in timestamp format and i want to convert that with php function date in my model. how i can make that? how to get access to my data which now in $row
?