$html = file_get_html('http://www.oddsshark.com/mlb/odds');
echo $html;
When ehcoed, the error message in the title of this question appears? I've had problems that are similar to this before. In all cases, I didn't actually need to increase the memoery in php.ini. Rather, there was a missing curly bracket that was needed to close a loop. This page that I'm requesting via the file_get_html function appears fine in my browser, but it just won't let me echo the html via php.
Any ideas?