Posted by Good Man on 10/31/07 16:34
JamesG <mailmehere@gmail.com> wrote in news:1193843101.021717.143420@
19g2000hsx.googlegroups.com:
> 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?
Using a '+' instead of a '.' ?
Navigation:
[Reply to this message]
|