How to parse many div's using Simple HTML DOM? [closed]
- by user1892833
I have this HTML code
<div id="first" class="first">
  One
    <div id="second" class="second">
      Second
      <div id="third" class="third">
        Third
        <div id="fourth" class="fourth">
            Fourth
            <div id="fifth" clas="fifth">
               Fifht
               <div id="sixth" class="sixth">
                   Sixth
               </div>
            </div>
        </div>
    </div>
</div>
This code is from an external website. I want to display 'Hi' using Simple HTML DOM from a URL.
I'm sick of trying and thinking codes to make this possible.
Thank you very much.