Mi compare questo errore: Fatal error: Call to a member function find() on a non-object in /membri/marcotini/...
Come mai secondo voi? Offline funziona perfettamente. Il codice è semplicemente questo:
Codice HTML:<?php
include('simple_html_dom.php');
$html = file_get_html('http://google.com');
foreach($html->find('table.containerListinoGenerico') as $e)
echo $e->innertext . '<br>';
?>