Possible Duplicate:
Best methods to parse HTML with PHP
I'm using the file_get_contents()
function in PHP to retrieve a remote webpage and run it into my table parsing script. But basically, my table parsing script only takes the first table on the page.
The page I'm trying to download has 3 html tables in it, so I was wondering if there was a way of only taking the third table? Most likely I'd want to only take lines 30 to 60 in the HTML file. Does anyone have any suggestions?