Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created October 17, 2012 07:34
Show Gist options
  • Select an option

  • Save andyhawthorne/3904237 to your computer and use it in GitHub Desktop.

Select an option

Save andyhawthorne/3904237 to your computer and use it in GitHub Desktop.
HMVC3
<?php
function check_login()
{
$CI =& get_instance();
$user = $CI->session->userdata('username');
if(!isset($user))
{
redirect('admin');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment