"; } function getAlbumContent($picasa_userId, $picasa_albumName) { $picasaweb_url = 'http://picasaweb.google.com/data/feed/api/user/'.urlencode($picasa_userId) .'/album/'.urlencode($picasa_albumName); $picasaweb_xml = file_get_contents($picasaweb_url); // a workaround needed on my server $picasaweb_xml = str_replace("xmlns='http://www.w3.org/2005/Atom'", '', $picasaweb_xml); return $picasaweb_xml; } ?>