using PHP to try get a value out of some HTML source code of a page that I open:
<tr>
<td class="bold">Your name</td>
<td class="boldblack">Bill</td>
</tr>
Is there a regular expression or something that could extract the persons name between the td tags, in the above code example I would want Bill returned. Any help would be grateful.
<tr>
<td class="bold">Your name</td>
<td class="boldblack">Bill</td>
</tr>
Is there a regular expression or something that could extract the persons name between the td tags, in the above code example I would want Bill returned. Any help would be grateful.