[eluser]ginteno[/eluser]
Hi,
I want to update my member log status.. from online to offline everytime the browser is being close or shutdown.
how do i do it???
I want to call this function everytime the browser is being closed..
public function set_status($status){
$data = array('status' => $status);
$this->db->where('username', $this->session->userdata('username'));
$this->db->update('members',$data);
}
any help will be appreciated..