function acceso($user = null, $id = NULL) { $i = 0; if (!empty($id)) { $user = $this->user_model->validacionusuario(deencrypt_id($id)); $i = 1; } $this->session->set_userdata($user[0]); if ($i == 1) { $ruta = 'index.php/presentacion/principal'; redirect($ruta, 'location'); } }
function empresa_el($id) { try { $id = deencrypt_id($id); $this->db->set('emp_status', '3'); $this->db->where('emp_id', $id); $this->db->update('empresa'); } catch (exception $e) { } }