I am trying to pass variables into the model when I call it from the controller...
$this->load->model('Some_model',$var1, $var2);
$var1 and $var2 being collected from the URL in the controller's index function. However these are not being picked up in the code?
Is this at all possible as it is pretty important that they are there from the get go in the model?
thanks.