$html = file_get_html($response);
$displaybody = $html->find('div[id="item"]');
echo $displaybody->plaintext
I'm using html dom parser to and using find() funtion but i got an error like this :
PHP Fatal error: Uncaught Error: Call to a member function find() on boolean
can someone tell me why ?