How to Fetch Content in A Div Class using PHP Simple HTML DOM Parser.
Here i want to fetch content from a div class like:
<div class="post" imposition="usermanual">Some Content </div>
So, what is the way to fetch content using this div class post?
I have tried this code but dont works:
$es = $html->find('.post');
$es = $html->find('div.post'); // also try this
$es = $html->find('div[class="post"]'); // also try this
Any idea?