let say that:
$t =
"<table>
<tr>
<td>hello...</td>
</tr>
</table>
<table>
<tr>
<td>how are you??</td>
<td>...bye.</td>
</tr>
</table>
<table>
<tr>
<td>good bye</td>
</tr>
</table>"
and i want to change the first <td> tag in the 2nd table to the following <td> tag <td width=15>
result:
"<table>
<tr>
<td>hello...</td>
</tr>
</table>
<table>
<tr>
<td width=15>how are you??</td>
<td>...bye.</td>
</tr>
</table>
<table>
<tr>
<td>good bye</td>
</tr>
</table>"
can i do this in php??
thanks...