Welcome Guest, Not a member yet? Register   Sign In
Help with a models and controller...
#1

[eluser]Unknown[/eluser]
Hello,

I am trying to learn how to use codeigniter and what I really need at this moment is to pass a uri segment from the controller to the model.

What I am needing is to grab a segment of the URI inside the controller, pass that segment name as a variable to the model so I can run a query based on what that variable contains.

Thanks for any help,
Anthony
#2

[eluser]apodner[/eluser]
http://example.org/segment1/segment2/segment3

Code:
$value = $this->uri->segment(2);
$this->load->model('Mymodel');
$returnValue = $this->Mymodel->someFunction($value);




Theme © iAndrew 2016 - Forum software by © MyBB