Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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');               
 }
share|improve this question
foreach($html->find('a') as $node) { if ($node->plaintext='IGN') $ret['Link'] = $node->plaintext; } This code gets to and displays the title 'IGN'. I am still having trouble getting to the link after that and getting the link itself. – user1492404 Jun 30 '12 at 2:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.