I need help with PHP preg_match?

  • Thread starter Thread starter savj14
  • Start date Start date
S

savj14

Guest
I am trying to extract some data from a website. How do I get the following.

I want United States from this:

<td class="dottedhorizontal"><img src="images/icons/flags/us.png" width="16" height="11" alt="United States" title="United States"></td>

I want offline from:

<td class="dottedhorizontal"><img src="images/icons/status/offline.png" width="16" height="16" alt="offline" title="offline"></td>

I want Call of Duty: WaW - joinable from:

<td class="dottedhorizontal">Call of Duty: WaW - joinable</font><br /><small>In Pre-Game Lobby<br /><small>1 of 56 achievements, 0 of 1250 pts</small></small></td>

I want Pre-Game Lobby from:

<td class="dottedhorizontal">Call of Duty: WaW - joinable</font><br /><small>In Pre-Game Lobby<br /><small>1 of 56 achievements, 0 of 1250 pts</small></small></td>

How do I do this?
 
Back
Top