Im using PHP to load a XML document:
$xmlDocument = file_get_contents($url, false, $context);
$xmlString = simplexml_load_string($xmlDocument);
XmlString and $url : http://testing.zwiink.us/getPurchased.php
Now im trying to filter out each element, which contains:
[u] => /zwinky/fds/creations/
I tried to use xpath, but always failed, i guess i used a wrong search value. Does anyone hava a idea how I would get this working?