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 using the following code to link to an image on Facebook:

foreach($photos["data"] as $photo)
        {echo $photo['source'];
                echo "<img src=’{$photo['source']}’ />", "<br />";
        }

The echo $photo['source'] shows the correct URL, and so does the src= in the image tag, but it tries to load from my site. So:

If the path to the image is http://a1.myimagepath.jpg

It tries to load http://www.mysite.com/%E2%80%99http://a1.myimagepath.jpg

take care, lee

share|improve this question

2 Answers

Your code contains curly quotes. You need to replace them with single quotes.

foreach($photos["data"] as $photo)
    {echo $photo['source'];
            echo "<img src='{$photo['source']}' />", "<br />";
    }
share|improve this answer

Try to post the URL manually:

foreach ($photos["data"] as $photo) {echo $photo['source'];
    echo "<img src=’http://a1.myimagepath.jpg’ />", "<br />";
}

You can also try without the foreach.

share|improve this answer
Welcome to SO! Please take a look at the formatting FAQ, and consider using capitalisation and punctuation to make your posts more legible. Thanks. – Lightness Races in Orbit Jul 24 '11 at 19:07

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.