Hi,
I have a div:
<div class="mada rock rolling">Amateur question</div>
Open in new window
I want to find this div with the PHP Simple HTML DOM Parser.
The following code does not work:
$html->find('div.mada.rock.rolling');
Open in new window
Can you help me, brothers and sisters? :)
$html->find('div[class=mad
or try:
$html->find('div.mada .rock .rolling');