Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 19, 2019 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/8ba20de9f957c03a20f044675c5ea087 to your computer and use it in GitHub Desktop.
Save parzibyte/8ba20de9f957c03a20f044675c5ea087 to your computer and use it in GitHub Desktop.
<?php
class usuariosModel extends CI_Model
{
private function propagarDatosDeSesion($usuario)
{
# Nota: aquí cargamos a la sesión desde la función, no en el constructor
$this->load->library("session");
$this->session->set_userdata("usuario", $usuario);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment