Does anyone know how i could use simple_html_dom’s find function to find an html element specifying 2 attributes instead of 1?
Like right now I was using
$area2 = $html->find(‘td[width=”450″]’);
but say I want to also specify the height for the object, etc
How could I do it?
Thanks!
I was hoping that
$html->find('td[width=450][height=450]');would work, but apparently not.This works:
And so does this: