Possible Duplicate:
How to parse and process HTML with PHP?
How would I go about getting a certain string from a webpage that has been scraped? I am using SimpleBrowser in PHP to download a webpage into a variable.
The resultant webpage at a certain part has the following:
    <tr>
        <td class="label" width="350">POD Receiver Name: </td>
        <td class="field" align="left">
            <b>KRISTY</b> 
        </td>
    </tr>
I want to get the value KRISTY into a variable, but not really sure how. I have no real experience with regex so I wouldnt know where to start.
Any help appreciated!
 
     
     
     
    