Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

How to insert time in table using CodeIgniter

$data = array(
    'user_id' => $user_id,
    'otp' => $otp
);

$this->db->set('create_at', 'NOW()', FALSE);
$this->db->insert('otp_expiry', $data);

//or 1 day expire

$this->db->set('create_at', 'NOW() + INTERVAL 1 DAY', FALSE);
$this->db->insert('otp_expiry', $data);
 
PREVIOUS NEXT
Tagged: #How #insert #time #table #CodeIgniter
ADD COMMENT
Topic
Name
6+6 =