este raz poprosim o radu. Pre parsing pouzivam tento script
include_once('simple_html_dom.php');
// Create DOM from URL
header("Refresh: 300;");
$html = file_get_html('http://www.xxx.sk/zzz/xxx/1-pilot');
$articles = array();
// pohladaj to co potrebujes resp.
foreach($html->find('div#uvod_cont') as $article) {
    $item['title']     = $article->find('h1', 0)->plaintext;
    $item['intro']    = $article->find('h2', 0)->plaintext;
    $item['details'] = $article->find('iframe', 0)->plaintext;
    $articles[] = $item;
}
Problem je ten ze na stranke mam nieco taketo
<div id="uvod_cont">
  <h1>Pilot</h1>
 .....
  <div class="clear"></div>
  <h2>Prvok: 01x01</h2>
.....
  <div class="ont">
    <div id="ont"><iframe src="http://nieco.xxx"></iframe></div>
Problem je v tom ze mi to nechce nacitat iframe.