Tip: Click lines to highlight, hold ctrl/cmd to multi-select
Code Igniter - load a model from a model (7-Jun @ 19:11)
Syntax Highlighted Code
- // from within your model
- $CI =& get_instance();
- $CI->load->model('other');
- $event = $CI->Other->method($var);
Plain Code
// from within your model
$CI =& get_instance();
$CI->load->model('other');
$event = $CI->Other->method($var);