<?php $html = '<table> <tbody> <tr><tr> <tr> <td> <table class="style124"> <tbody> <tr> <td>A</td> </tr> <tr> <td>B</td> //THIS !! </tr> </tbody> </table> </td> </tr> <tr></tr> </tbody> </table>'; $dom = new DOMDocument; $dom->loadHTML($html); $tables = $dom->getElementsByTagName('table'); foreach($tables as $table){ if(preg_match('/\bstyle124\b/', $table->getAttribute('class'))){ $trs = $table->getElementsByTagName('tr'); $tds = $trs[1]->getElementsByTagName('td'); echo $tds[0]->nodeValue; } }
You have javascript disabled. You will not be able to edit any code.