hey I have a php script that opens a URL of another another website and reads in the HTML to a variable.
<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