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 am trying to access and output the JSON response:

  1. I want to get to the values for [Start]=>0 inside of the Web array.
  2. I also need to go through and output the [results][0]clickurl,title etc.

    I have spent hours now trying all types of combinations to no avail. Thanks for the help!

      Array
        (
    [bossresponse] => Array
        (
            [responsecode] => 200
            [web] => Array
                (
                    [start] => 0
                    [count] => 14
                    [totalresults] => 14
                    [results] => Array
                        (
                            [0] => Array
                                (
                                    [date] => 
                                    [clickurl] => http://url.com/1
                                    [url] => http://url.com/1
                                    [dispurl] => http://url.com/1...
                                    [title] => Title of Content 1
                                    [abstract] => This is the summary, This is the summary,    This is the summary, ...
                                )
    
                            [1] => Array
                                (
                                    [date] => 
                                    [clickurl] => http://url.com/2
                                    [url] => http://url.com/2
                                    [dispurl] => http://url.com/2...
                                    [title] => Title of Content 2
                                    [abstract] => This is the summary, This is the summary,  This is the summary, ...
                                )
                        )
    
                  )
    
           )
    
    )
    
share|improve this question

2 Answers

up vote 0 down vote accepted
echo $var['bossresponse']['web']['start'];
foreach ($var['bossresponse']['web']['results'] as $result) 
  foreach ($result as $key => $value) {
    echo "$key => $value <br>";
  }
}    
share|improve this answer
Thanks for the help! – uber_n00b Sep 13 '11 at 20:01
can you see my comment below and let me know what is going on, please? – uber_n00b Sep 14 '11 at 0:12
$json['bossresponse']['web']['start']
$json['bossresponse']['web']['results'][0]['title']

in foreach()

foreach($json['bossresponse']['web']['results'] as $j){
     echo "<br>title".$j['title'];
}
share|improve this answer
Thanks for this, I was using this, but I was attempting to do so from within a foreach. – uber_n00b Sep 13 '11 at 19:57
@uber_n00b: added – genesis Sep 13 '11 at 19:58

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.