• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
PHP:
<?php
/**
 * Code get link download http://mp3.zing.vn/tv
 * Author: Killer
**/
$link   = $_GET['url'];
if($link){
    $source = @file_get_contents($link);
// Lấy source html của link
    /**
     * BEGIN: Tách chuỗi lấy link download
    **/
    $xml = explode('<input type="hidden" id="_strAuto" value="',$source);
    $xml = explode('" />',$xml[1]);
    $sourcexml = @file_get_contents($xml[0]);
    $dl = explode('<source><![CDATA[',$sourcexml);
    $dl = explode(']]></source>',$dl[1]);
    /**
     * END: Tách chuỗi lấy link download
    **/
    if($dl[0]){
        header('location: '.$dl[0]);
    }else{
        echo "Error: ".$link;
    }
}else{
    echo "empty";
}
?>
Lưu thành file.php
Cách sử dụng chạy đường dẫn: http://domain.com/file.php?url=http...a/Flower-Boy-Ramyun-Shop-Tap-10/IWZ96ZB9.html
Thanks lấy tinh thần nào
 

Facebook Comments

New posts New threads New resources

Back
Top