$data = array();
$html = file_get_html('www.example.com');
foreach($html->find(".bidsTable tr") as $tr){
$row = array();
foreach($tr->find("td") as $td){
/* enter code here */
$row[] = $td->plaintext;
}
$data[] = $row;
}
I am using this code to get the content from external url but I do not get the full html code is there any way to get the content when that page is fully loaded. any help will be appreciated.