我已经登录了用户登录时的登录表单,并且已成功登录。但在登录时,我需要更新该用户的登录日期和时间。 但是我无法更新它。
答案 0 :(得分:1)
喜欢这个......
if( $query->num_rows() )
{
$data = array(
'lastloginD' => CURDATE(),
'lastloginT' =>CURTIME(),
);
$this->db->where('id',$id_value);
$this->db->update('fit_1login', $data);
redirect('fit_formlogin');
}
答案 1 :(得分:0)
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Fit_logmodel扩展了CI_Model {
//get the username & password from tbl_usrs
function get_user($usr, $pwd)
{
$this->db->where('regID', $usr);
$this->db->where('loginCode',$pwd);
$query = $this->db->get('fit_1login');
if( $query->num_rows() )
{
$data = array(
'lastloginD' => 'NOW()',
'lastloginT' => 'CURRENT_TIMESTAMP',
);
$this->db->replace('fit_1login', $data);
redirect('fit_formlogin');
}
return false;
}
//return $query->num_rows();
}&GT;