How get previousSibling and nextSibling
I have html:
<hr>
<p><font face="AvantGarde Bk BT" style="font-size: 9pt" color="#66FF33">
(08/04/2006) Parallel Worlds are one of the featured artists in the
<a href="http://www.urband.net/radio/">Urban D radio</a>. there you can listen
to many tracks from the 3 released cd albums.</font></p>
<hr>
I need get
1: (08/04/2006) Parallel Worlds are one of the featured artists in the
2: . there you can listen to many tracks from the 3 released cd albums.
I use http://simplehtmldom.sourceforge.net.
I get element $e->href
this is开发者_StackOverflow <a href="http://www.urband.net/radio/">Urban D radio</a>
http://simplehtmldom.sourceforge.net/manual.htm#section_traverse
Then click 'Traverse the DOM tree'.
精彩评论