[eluser]Chris Williams[/eluser]
I'm trying to get this query to display.
Code:
$this->db->select('*');
$this->db->from('z_customer_entity');
$this->db->join('z_checklist_items', 'table_a.id = table_b.table_a_id', 'left');
$query = $this->db->get();
$this->load->view('reports_view', $query);
I'm using this in the view file:
Code:
<?php foreach ($query->result() as $row): ?>
<li><?=$row->entity_id?> | <?=$row->checklist_item_id?></li>
<?php endforeach; ?>
But I'm getting this error:
Message: Undefined variable: query
What am I missing?