Hey,
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!