I can't grab specific URL in search page
问题 I enter the estate website and searched by name of the city. After that I want to grab Osaka City building URL. In here http://brillia.com/search/?area=27999 There are four of those. And I m using that link to grab URL. $allDivs = $parser->getElementsByTagName('div'); foreach ($allDivs as $div) { if ($div->getAttribute('class') == 'boxInfomation') { $allLinks = $div->getElementsByTagName('a'); foreach ($allLinks as $a) { $linkler[] = $a->getAttribute('href'); } } } But I cant grab those.