Please see the code below.
I have it in a string variable, and I want to be able to get the 3rd level UL from it. So here is what I want to get:
Your help is appreciated. I'm using PHP 5
Code:
<ul>
<li>
Services
<ul>
<li>
Web Design & Development
<ul>
<li>CMS</li>
<li>e-Commerce</li>
</ul>
</li>
<li>SEO</li>
<li>Hosting</li>
</ul>
<li>About</li>
<li>Contact</li>
</li>
</ul>
I have it in a string variable, and I want to be able to get the 3rd level UL from it. So here is what I want to get:
Code:
<ul>
<li>CMS</li>
<li>e-Commerce</li>
</ul>
Your help is appreciated. I'm using PHP 5






