Skip to content

Instantly share code, notes, and snippets.

@adamtester
Created April 8, 2014 16:00
Show Gist options
  • Select an option

  • Save adamtester/10147836 to your computer and use it in GitHub Desktop.

Select an option

Save adamtester/10147836 to your computer and use it in GitHub Desktop.
Using CodeIgniter files outside the CI installation
<?php
ob_start();
include('index.php');
ob_end_clean();
$CI =& get_instance();
$CI->load->library('session');
echo $CI->session->userdata('name');
/*
Credit to Ben Swinburne
http://stackoverflow.com/a/7926691/1196030
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment