Welcome Guest, Not a member yet? Register   Sign In
Very simple DataMapper issue just installed
#1

[eluser]fireport[/eluser]
Datamapper latest version first orm i have been having a play for some reason i cannot get a foreach to in a view but it works in the controller. I have pasted a crude example any ideas?

controller
Code:
public function index()
{

  $c = new Make();
                $data['cars'] = $c->get();
  
  $this->load->view('car_edit',$data);

}
View sample

Code:
<?php echo $cars->Make; ?> //this works
<?php
// below this does not work
foreach ($cars as $ma) {
$ma->Make;  
}

?>




Theme © iAndrew 2016 - Forum software by © MyBB