Hello,
Using Simple HTML DOM, I was able to get the table I needed from NHL.com.
$html = file_get_html('http://www.nhl.com/ice/standings.htm?season=20112012&type=LEA');
$e = $html->find("table", 2);
echo ($e);
So it outputs the table I want, and all the information. But now it still has attributes, tags, links etc. still in it.
I'm not sure of the next step, how can I strip the table down so it's essentially just a plain table with text? Eventually I'd like to save all that information into a database, but one step at a time.
Any help is appreciated.