I have tested this and it works
$tables = $dom->find('table[@class="sometable"]');
foreach($tables as $table)
{
$titles = $table->find('a[@class="title"]');
foreach($titles as $title)
{
echo "Link title = " . $title ."<br />";
}
$categories = $table->find('td[@class="category"]');
foreach($categories as $category)
{
echo "Category id = " . $category->id ."<br />";
}
$titles2 = $table->find('td[@class="somename"]');
foreach($titles2 as $title2)
{
echo "Title2 = " . $title2 ."<br />";
}
}