buyur hocam başlığı yeni gördüm o yüzden atmadım
<?php
$Live = $_GET['id'];
$ch = curl_init('https://www.giniko.com/watch.php?id='.$Live);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/x-www-form-urlencoded',
'Referer: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..',
));
$site = curl_exec($ch);
curl_close ($ch);
preg_match(base64_decode('I3NvdXJjZTogIiguKj8pIiM= '), $site, $icerik);
$Embed = $icerik[1];
header ("Location: $Embed");
//print_r($Link);
?>