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
