bu kodu şimdi test ettim sorun yok.
<?
$site="http://vidomido.superonline.com";
$kategori="/video/88.html";
$baglanti=file_get_contents($site.($kategori));
preg_match_all('|<div class="video_img"><A HREF="(.*?)"><img src="(.*?)" alt="(.*?)" width="120" height="90" ><\/a></\div>|si',$baglanti,$video);
for($i=1; $i<=6; $i++){
$baslik=$video[$i][3];
$url=$video[$i][1];
$img=$video[$i][2];
$sbaglanti=file_get_contents($site.($url));
preg_match('|s1\.addVariable\("file","(.*?)"\);|si',$sbaglanti,$vido);
$flvurl=$vido[1];
echo $baslik."<br>".$url."<br>".$img."<br>".$flvurl;
}
?>