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.

When I do var_dump($punkty); I got something like this:

array(1) 
{ 
[0]=> array(4) 
    { 
    ["id"]=> string(2) "28" 
    ["mapa"]=> string(97) "a:3s:3:"lat";s:17:"49.21103723075132";s:3:"lng";s:18:"22.330280542373657";s:4:"zoom";s:2:"17";}" 
    ["miasto"]=> string(5) "Cisna" 
    ["nazwa_obiektu"]=> string(44) "Cisna - noclegi u Mirosławy w Bieszczadach" 
    }
} 

When i do:

foreach ($punkty['mapa'] as $item)
        {
        echo $item;
        }

I get

Invalid argument supplied for foreach() 

How to solve it?

share|improve this question
try echo $item['mapa']; – Bhuvan Rikka 웃 Jul 27 '12 at 12:19

4 Answers

up vote 5 down vote accepted

I think you're trying to do this:

foreach($punkty as $item) {
    echo $item['mapa'];
}
share|improve this answer
Yes, thx for very quic answer – ariel Jul 27 '12 at 12:20

But don't forget to verify your $punkty is not empty, for don't have an other error :-) , for sample:

if (isset($punkty )){
    foreach($punkty as $item){
        echo $item[0]['mapa'];
    }
}
share|improve this answer

$punkty['mapa'] is not an array in your case but the string you can only pass arrays or objects who implements the iterator to foreach loop.

share|improve this answer

mapa is at $punkty[0]['mapa'], not at $punkty['mapa'].

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.