Possible Duplicate:
How to parse and process HTML with PHP?
I want to get the contents of a remote website using file_get_contents() This website has texts, images and a table in which i am interested. There is the next table on that remote site:
<table style="width: 100%" class="style36">
<tr>
<td style="width: 25%" class="style38">B3</td>
<td style="width: 60%" class="style38">Las Flores</td>
<td style="width: 15%" class="style38">0</td>
</tr>
</table>
The values on each cell are dynamic, and I would like to query them in the fastest and more reliable way possible.
I tried limiting the file_get_contents function to read only from X characters, but since the page is dynamic, I can not really know on which character my table starts.
Thanks in advance