i have such html code block
<tr>
<td style="padding: 11px 8px 11px 15px; color: #000; width: 92px; border-bottom: solid 1px #ccd9e2;"> Name </td>
<td style="color: #666;border-bottom: solid 1px #ccd9e2;"> Lusine Akopyan </td>
</tr>
to parse name i use such code preg_match("/Name<\/td>(.+?)<\/td>/is", $html, $match);
but have nothing in $match
var, waht i do wrong?