Welcome Guest, Not a member yet? Register   Sign In
UGH! Arrays are giving me a headache :(
#1

[eluser]Kinsbane[/eluser]
So, I have a resultset that outputs this:
Code:
Array
(
    [0] => Array
        (
            [id] => 1
            [division_code] => CORP
            [name] => Corporate Office
            [description] => Employees stationed at the office.
        )

    [1] => Array
        (
            [id] => 2
            [division_code] => CPD
            [name] => Products
            [description] => Employees stationed at the 20520 office.
        )

    [2] => Array
        (
            [id] => 3
            [division_code] => BPD
            [name] => New Products
            [description] => Employees stationed at the 295 Foster office.
        )

    [3] => Array
        (
            [id] => 4
            [division_code] => YPD
            [name] => Old Products
            [description] => Employees stationed at the Yokneam office.
        )

    [4] => Array
        (
            [id] => 5
            [division_code] => USA
            [name] => MRV Americas
            [description] => Sales personnel stationed in the Americas.
        )

    [5] => Array
        (
            [id] => 6
            [division_code] => INT
            [name] => MRV International
            [description] => Sales personnel stationed internationally, outside of the Americas.
        )

)

I have my code grab this dataset with an object, and then I try to loop through the object with this:
Code:
foreach($divisions->result_array() as $row)
{
    die(print_r($row)); //just to see what I get
}

However, this only gives me the first record in the dataset ([id] of 1).
I am trying to loop through this dataset and then give it to the $data[] array and have the values stored show up in the view file. But everything I'm trying won't let me get at the data I need.

All I want to do is take that result set and put it into the $data array like this:
Code:
$data['division'][$key] = $value;

But everything I'm trying isn't working - it's leaving me stuck at the first level of arrays, which then contain arrays which get at the values I need.


Messages In This Thread
UGH! Arrays are giving me a headache :( - by El Forum - 09-24-2008, 12:30 PM
UGH! Arrays are giving me a headache :( - by El Forum - 09-24-2008, 02:00 PM
UGH! Arrays are giving me a headache :( - by El Forum - 09-24-2008, 02:24 PM
UGH! Arrays are giving me a headache :( - by El Forum - 09-24-2008, 03:15 PM
UGH! Arrays are giving me a headache :( - by El Forum - 09-24-2008, 03:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB