<?php $xml = <<<XML <nowplaying-info-list> <nowplaying-info > <property name="track_title"><![CDATA[Song Title]]></property> <property name="track_album_name"><![CDATA[Song Album]]></property> <property name="track_artist_name"><![CDATA[Song Artist]]></property> </nowplaying-info> </nowplaying-info-list> XML; $sxml = simplexml_load_string($xml); $results = $sxml->xpath("/nowplaying-info-list/nowplaying-info/property[@name='track_artist_name']"); $artist = (string) $results[0]; echo $artist;
You have javascript disabled. You will not be able to edit any code.