xml:
<entry>
<link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://picasaweb.google.com/data/feed/api/user/xy/albumid/531885671007533108" />
<link rel="alternate" type="text/html" href="http://picasaweb.google.com/xy/Cooking" />
<link rel="self" type="application/atom+xml" href="http://picasaweb.google.com/data/entry/api/user/xy/albumid/531885671007533108" />
</entry>
Here's what I've tried:
foreach($xml->entry as $feed) {
$album_url = $feed->xpath("./link[@rel='alternate']/@href");
echo $album_url;
}
I've tried all kinds of permutations, too but no luck.
Expected result would be http://picasaweb.google.com/xy/Cooking
The result I get is "". Can someone explain what I'm doing wrong?
Can someone please help me out? I've been at this for hours...