Подскажите, как выкачать по ссылкам каталога страницы второго уровня с помощью simple_html_dom.php
Взял все ссылки на рейсы:
// set_time_limit(10);
require_once 'simple_html_dom.php';
require_once 'curl.php';
$site = 'http://biletyczarterowe.r.pl';
$html = curl_get('http://biletyczarterowe.r.pl');
$dom = str_get_html($html);
foreach($dom->find('table[id=prawyKwadrat] tr td a') as $element) {
$a = $element->href;
$a = $site . htmlspecialchars_decode($a);
// --------------------------------------------------------------
$page = curl_get($a);
$page_dom = str_get_html($page);
file_put_contents(md5($page_dom) . '.html', $page_dom);
}
А как теперь спарсить эти самые ссылки и как на них создать страницы ?