ChatLakTurK adlı üyeden alıntı: mesajı görüntüle
izle.html deki player ın kodunu buraya yazarmısınız?
izle.html player kodu:
<embed 
  src="player-viral.swf" 
  width="470"
  height="320"
  allowscriptaccess="always"
  allowfullscreen="true"
  flashvars="file=yt.php?v=<?=$w?>&autostart=true&plugins=fbit-1&dock=true&skin=festival.swf&logo=playerlogo.png"
/>
yt.php kodu:
<?
ob_start();
$videoid = $_GET['v'];
$videoUrl = 'http://www.youtube.com/watch?v='.$videoid;
$videoUrl = base64_encode($videoUrl);
//echo $videoUrl;
function f($bas, $son, $yazi)        { @preg_match_all('/' . preg_quote($bas, '/') . '(.*?)'. preg_quote($son, '/').'/i', $yazi, $m);return @$m[1];}
$data = file_get_contents('http://w3.hidemyass.com/index.php?q='.$videoUrl);
$gir = str_replace("\n","",$data);
$gir = str_replace("\t","",$gir);
$gir = trim($gir);
$gir = urldecode($gir);
$ayir = f(',5|','"',$gir);
$ayir = $ayir[0];

if (strpos($ayir,'csi_page_type')) {
$ayir = f(',5|','&csi_page_type',$gir);
$ayir = $ayir[0];
}

$cek = base64_encode($ayir);
$link = "http://w3.hidemyass.com/index.php?q=".$cek;
//echo $link;
header("Location: $link");
?>