All pastes #2089185 Raw Edit

Alejandro

public text v1 · immutable
#2089185 ·published 2011-10-11 21:48 UTC
rendered paste body
code in the controller:

		$this->load->database();
		$query = $this->db->get('articulos');
		$datos['query'] = $query->result();
		$this->load->view('articulos/gestion_view', $datos);

code in the view file:

		<?php foreach ($query->result() as $row): ?>
		<li><?=$row->id?></li>
		<?php endforeach; ?>

error I get:

Fatal error: Call to a member function result() on a non-object in /Users/alejandro/Dropbox/webserver/codigniter/application/views/articulos/gestion_view.php on line 9