Ben benim formunda aşağıdaki özel yöntemi var:
function _verifywebsite ($id) {
$row = $this->websites->fetchRow("id=$id");
$row->verified_date = $this->_get_date(); // this is the line in question
$row->save();
}
Ben $ satır doğru tarih biçiminde dize değeri olarak tarih girmek için beni gerektirdiğini varsayalım.
But what if I want to include some SQL function, like NOW(), can I assign it to $row->verified_date somehow or it's against best practices?