I am trying to scrape a content from one site using the simple_html_dom using this code
$html = file_get_html('http://www.aswaqcity.com/thread1230092.html');
//echo $html;
// Find all article blocks
foreach($html->find('/html/body/div[2]/div[1]/div/div/div/table[1]/tbody/tr[2]/td[2]') as $article) {
$item['title'] = $article->find('/div[1]/strong', 0)->plaintext;
$articles[] = $item;
}
print_r($articles);
I got the xpath from firebug options but there is nothing scraped.