// get movie with ID 1, then get all genres $movies = new Movie(); $movies->get_by_id( 1 ); $movies->genre->get(); // add it to the data array for the view $data['movie'] = $movies; // load the view $this->load->view('myview', $data);
<b>Movie title: <?php echo $movie->title ?></b><br /> <b>Genres:<b/><br /> <?php foreach( $movie->genre as $genre ) { echo $genre->name; }?>