I am trying to parse a blogspot feed using xpath but it doesnt seem to be working with anything that I try. I am not sure if it is because of the namespaces or what but I was hoping someone could help me. Here is the code:
$xml = simplexml_load_file('http://feeds.feedburner.com/blogspot/MKuf');
$next = $xml->xpath("//link[@rel='next']");
print_r($next);
This is just returning an empty array and it should not be. I tried it doing just link or just entry and it still is returning empty. The only one I can run on it that works is *. Any help is appreciated.