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.

My PHP page looks like this:

$bannertext = $_GET['bannertext'];
$banner = json_decode($bannertext);

How do I access each of those strings now? Like echo $banner[1]; and so on?

share|improve this question
Have you tried it? – simshaun Dec 8 '11 at 20:25
what is the value of bannertext? – Tim G Dec 8 '11 at 20:31
bannertext is an array consisting of 3 test strings. – kaymeezy Dec 8 '11 at 20:39

2 Answers

That depends, what is the value of $banner? Use var_dump($banner).

json_decode will return null if it can't parse the data.

share|improve this answer
well $bannertext should be made of 3 different text strings. And I tried var_dump($banner) and it returned NULL. – kaymeezy Dec 8 '11 at 20:29
Then it isn't valid JSON. – Mob Dec 8 '11 at 20:35

If you want to use echo $banner[1], $banner has to be an array.

You can use explode for that:

$banner = explode(' ', $bannertext);

echo $banner[1];

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.