Just getting into DOMDocument()... I'm loading an HTML page and
trying to extract certain bits of text. Just one problem: loadHTML()
seems to ignore orphan tags like '<br>'. For example, in the
following HTML:
<div class="text">Some text is here. <br> New line. <br> Another new
line. </div>
<div class="text">Some text is here. <br> New line. <br> Another new
line. </div>
<div class="text">Some text is here. <br> New line. <br> Another new
line. </div>
If I run the above HTML through:
$nodes = $table->getElementsByTagName("*");
I only get three nodes that I can iterate through (<div>). What I
want to do is split/explode the three lines within each div, but when
I look at the nodeValue of each node, it only shows something like
"Some text is here. New line. Another new line."
Any ideas?
...Rene
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php