Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've debugged the view page just to confirm the data were properly collected. And indeed I have this:

 [Friend] => Array
                (
                    [0] => Array
                        (
                            [id] => 2
                            [username] => James_Baker
                            [password] => 7pooplllLLKMKMKKkss09koskld1d9b5e6
                            [first_name] => James
                            [last_name] => Baker
                            [email] => D-W-James@yahoo.com
                            [group_id] => 2
                            [created] => 2011-01-10 08:25:52
                            [modified] => 2011-02-04 17:30:47
                            [slug] => 
                 ....
                 ....

As I tried displaying on my view page, from my view.ctp here's what I currently use:

..
<?php foreach ($users as $user): ?>

    <tr>
        <td><?php echo $user['Friend']['username']; ?></td>

    </tr>
<?php endforeach; ?>
..

but I'm getting this error:

Undefined index: username

Can someone fix the error based on the debug code I have ? I'm trying to output/echo the friend's username.

share|improve this question

2 Answers

up vote 5 down vote accepted

Correct key to call this value is $user['Friend'][0]['username']

To debug use var_dump($user); exit; just after you start every loop.

<?php foreach ($users as $user): ?>
     <h1>User Friends</h1>
     <?php foreach ($user['Friend'] as $friend): ?>
         <?php echo $friend['username']; ?>
     <?php endforeach; ?>
<?php endforeach; ?>
share|improve this answer
1  
to debug, better use pr() or debug() – mark Feb 8 '11 at 0:00
Thanks, solved the problem. :-) – woel Feb 8 '11 at 6:19
1  
@mark var_dump() is nice with xdebug installed – dogmatic69 Feb 8 '11 at 10:19

sounds like you want $user['Friend'][0]['username']

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.