Welcome Guest, Not a member yet? Register   Sign In
I can't get a simple foreach loop going here!
#10

[eluser]steelaz[/eluser]
I just started playing with CI yesterday and got the same problem with looping through result, so I dumped $row in my 'view' and it turns out to be object.

So instead:
Code:
foreach($results as $row):
echo $row['title'];
endforeach;
try this:
Code:
foreach($results as $row):
echo $row->title;
endforeach;
Worked for me.


Messages In This Thread
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 05:40 AM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 06:04 AM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 06:13 AM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 06:19 AM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 08:06 AM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 02:19 PM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 03:08 PM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 04:36 PM
I can't get a simple foreach loop going here! - by El Forum - 02-15-2008, 06:11 PM
I can't get a simple foreach loop going here! - by El Forum - 02-16-2008, 10:09 PM
I can't get a simple foreach loop going here! - by El Forum - 03-12-2008, 06:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB