Welcome Guest, Not a member yet? Register   Sign In
Records and array in the view
#3

[eluser]henry178[/eluser]
[quote author="InsiteFX" date="1301514980"]
Code:
public function getAll_cabina($num, $offset)
{
    $data = $this->db->get(‘tab_anagrafica’, $num, $offset);

    if ($data->num_rows() > 0)
    {
        return $data->result_array();
    }
    else
    {        
        return false;
    }          

    // this is wrong, you will never get to here! should be removed!
    $data->free_result();
}

Your view code would be something like this, hard to tell without knowing your fields in the table!
Code:
<?php foreach($row as $rows):?>

<h2>&lt;?php echo $rows['field1'];?&gt;</h2>

<p>&lt;?php echo $rows['field2'];?&gt;</p>

&lt;?php endforeach;?&gt;

InsiteFX[/quote]


Perfect! :-)


Messages In This Thread
Records and array in the view - by El Forum - 03-30-2011, 08:36 AM
Records and array in the view - by El Forum - 03-30-2011, 08:56 AM
Records and array in the view - by El Forum - 03-30-2011, 08:59 AM
Records and array in the view - by El Forum - 03-30-2011, 09:38 AM
Records and array in the view - by El Forum - 03-30-2011, 11:44 AM
Records and array in the view - by El Forum - 03-31-2011, 04:16 AM
Records and array in the view - by El Forum - 03-31-2011, 04:30 AM
Records and array in the view - by El Forum - 03-31-2011, 07:08 AM
Records and array in the view - by El Forum - 03-31-2011, 07:16 AM
Records and array in the view - by El Forum - 03-31-2011, 07:40 AM
Records and array in the view - by El Forum - 03-31-2011, 08:07 AM
Records and array in the view - by El Forum - 03-31-2011, 08:37 AM
Records and array in the view - by El Forum - 03-31-2011, 09:22 AM
Records and array in the view - by El Forum - 03-31-2011, 10:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB