Reputation: 2877
i try to to parse a xml, but i get some errors
http://fincha.com/kunden/gordon/
i get the whole xml, not only the needed
$xmlStr = file_get_contents('http://demo-q4:[email protected]:80/livexml/2.1/demo-de.portal.xml/query/apple+ipod?srt=rel&pgn='.$page.'&pge=10');
$xmlObj = simplexml_load_string($xmlStr);
print_r($xmlObj->{product-results-module}->{product-results});
i just need the products please help
Upvotes: 0
Views: 62
Reputation: 323
Don't forget the single quotes
print_r($xmlObj->{'product-results-module'}->{'product-results'});
Upvotes: 1
Reputation: 2877
foreach($xmlObj->{"product-results-module"}->{"product-results"}->{"product"} as $produkt)
Upvotes: 2