CONTROLADOR:
Código PHP:
Ver original$data['contenido']=$this->mInventario->verRegistros('tbproductos');
$this->load->view('miVista',$data)
VISTA:
Código PHP:
Ver originalforeach ($contenido as $f)
{
echo"<tr>
<td>" . $f->CodProducto . "</td>
<td>" . $f->Descripcion . "</td>
<td>" . $f->Precio . "</td>
<td>" . $f->Existencias . "</td>
</tr>";
}