For some reason I get recursion while using Simple DOM Parser Library.
My HTML is like
<div id="root">
<div class="some_div">some text</div>
<div class="field_1 misc1"><a href="#">Some text link</a> <strong>15</strong></div>
<div class="field_2 misc2"><a href="#">Some text link</a> <strong>25</strong></div>
</div>
I created PHP script, included single file
include_once('simple_html_dom.php');
And I try to get 15 and 25 values from HTML above. But when I run
$ret = $html->find('div[id=root]');
print_r($ret);
my script returns a lot of recursions - what am i doing wrong and how can i get this 15 and 25 values properly?