i want to use simple_html_dom on url
i used this :
include_once('/simple_html_dom.php');
but returns this error :
Fatal error: Call to a member function find() on a non-object in test.php on line 9
I CHMOD directory and the file to 777 , but no change.
I used this method :
$file = realpath(dirname(__FILE__)."../simple_html_dom.php");
include_once($file);
but returns an error : filename cannot be empty.
SAFE_MODE is ON and i'm not the server admin.
any ideas ?