Here is my code:
include('simple_html_dom.php');
$page = file_get_html($_REQUEST['url']);
$page = $page->find('table[class=cf-table-style sorted]',0)->find('tbody',0);
echo ($page);
echo $page
is suppose to print HTML but it prints a Array
, which means find('tbody',0)
is returning array. It shouldn't do like that i think
Where is error in my code.