I have been trying to take my scraping to a new level. However I am somewhat lost. Right now I am using metacritic and trying to scrape a link to the review from a specific company. For this example I am targeting IGN at this url: http://www.metacritic.com/game/pc/star-wars-the-old-republic/critic-reviews
I want to give more a code sample but im really stuck. Here is what I have been playing around with:
foreach($html->find('a')->plaintext='IGN' as $node) {
$ret['Link'] = $html->find('div div div ul li li a');
}