Tip: Click lines to highlight, hold ctrl/cmd to multi-select

Code Igniter - load a model from a model (7-Jun @ 19:11)

remy

Syntax Highlighted Code

  1. // from within your model
  2.  
  3. $CI =& get_instance();
  4. $CI->load->model('other');
  5.  
  6. $event = $CI->Other->method($var);

Plain Code

// from within your model

$CI =& get_instance();
$CI->load->model('other');

$event = $CI->Other->method($var);

Permalink: http://codedumper.com/model-from-a-model