Hey Guys, I'm stuck at something which must be simple...
I have a classic CRUD view loading to see the result of the CRUD like this, where I send the $output after the render() function.
$this->load->view('my_view',$output);
BUT i want to load another view where I retrieve the value of one element of this CRUD when i am in "read" or "edit" state, for example:
$this->load->view('my_other_view',$output->test_id);
Is that possible? How can i get the value of one element ?
Many thanks !