Posted by JamesG on 10/31/07 15:05
Hi,
I have a data structure as follows (print_r($data)):
Array
(
[0] => stdClass Object
(
[FIELD1] => 2355
[FIELD2] => 123
[FIELD3] => 1.25
)
[1] => stdClass Object
(
[FIELD1] => 309
[FIELD2] => 122
[FIELD3] => 0.55
)
)
I can't seem to iterate through it,
If I try
foreach($data as $obj) {
echo $obj->FIELD1 + $obj->FIELD2;
}
It only shows the first object, not the rest. What am I doing wrong?
Thanks
Navigation:
[Reply to this message]
|