• 30-11-2010, 19:20:58
    #1
    öncelikle ugraştım yapamadım
    sayfadaki hotfile linkleri çekip sonra bunları listeliyen kod lazım yardımcı olurmusunuz.

    örnek;
    http://hotfile.com/dl/36547352/45sdsad/Dosya1.rar.html
    http://hotfile.com/dl/36547352/4896sad/Dosya2.rar.html
  • 30-11-2010, 20:00:34
    #2
    hocam verdiğiniz örnek adrese göre yapılandırdım, aşağı kodu bir php sayfası olarak kaydedip herhang bir hostta veya localhostta çalıştırarak kullanabilirsiniz

    <a href="">Giriş >>>></a><br />
    <hr>
    <form method="POST" action="">
    <b>Linki Buraya Yazın:</b> <br /><input type="text" name="link" size="50"><input type="submit" value="Gönder">
    </form>
    <?
    // link belirle
    $link = $_POST["link"];
    
    // kaynak site
    $site = file_get_contents("$link");
    
    // içerik
    $icerik = explode('<blockquote class="restore"><div align="center">',$site);
    $icerikSon = explode('</div></blockquote>',$icerik[1]);
    ?>
    
    <hr>
    <b>İçerik (kod halinde gör):</b> <br /><textarea size="50" rows="2" cols="40"><?=$icerikSon[0]?></textarea>
    <hr>
    <b>İçerik: (ekrana yazıdırılmış halde gör)</b> <br /><?=$icerikSon[0]?>
  • 30-11-2010, 20:05:28
    #3
    teşekkür ederim ama burda sayfayı kopmle cekiyor sadece bana linkler lazım
    ben böle bişey yaptım ama tek dosyayı cekiyor buna bişeyler yapmak lazım
    <?php
    $site = file_get_contents("http://www.dizimatik.com/dexter/90000-dexter-|-tum-bolumler-|-turkce-altyazili-print.html");
    $video = explode('http://hotfile.com',$site);
    $videoSon = explode('.html',$video[1]);
    echo 'http://hotfile.com'.$videoSon[0].'.html</br>';
    ?>
  • 30-11-2010, 20:18:50
    #4
    en son bide şöyle yaptım ama bu severde ... lı larda çıkıyor ...

    <form method="POST" action="">
    <b>Linki Buraya Yazın:</b> <br /><input type="text" name="link" size="50"><input type="submit" value="Gönder">
    </form>
    
    
    <?php
    $link = $_POST["link"];
    $kaynak = file_get_contents($link);
    
    $icerik = '#http://hotfile.com(.*?).html#si';
    
    preg_match_all($icerik,$kaynak,$dicerik);
    
    $dicerik = $dicerik[1];
    
    $news_total=count($dicerik);
    
    $i=1;
    
    while($i <= $news_total){
    
    echo "http://hotfile.com$dicerik[$i].html<br />";
    
    $i++;
    }
    
    ?>
  • 30-11-2010, 20:39:03
    #5
    sonunda oldu

    <?PHP
    header('Content-Type: text/html; charset=UTF-8');
    if (!empty($_POST["metin"]))
    {
    $kaynak = file_get_contents($_POST['metin']);
    $icerik = '#<a href="http://hotfile.com(.*?).html" target="_blank">#si';
    preg_match_all($icerik,$kaynak,$dicerik);
    $dicerik = $dicerik[1];
    $news_total=count($dicerik);
    $i=0;
    while($i <= $news_total){
    Echo '
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Hotfile Link Yakala</title>
    <head>
    <body>
    </body>
    </html>
    ';
    //Hotfile Link Yakalayıcı//
    echo  "<center>http://hotfile.com".$dicerik[$i].".html</br></center>";
    $i++;
    }
    
    Echo '
    <p align="center">
    <br>
    <form action="cek.php" method="post">
    <p align="center">
    <tr><td>
    URL Gir<br>
    <textarea name="metin" rows="3" cols="100">' . $_POST["metin"] . '</textarea></td>
    <br>
    <br>
    <input type="submit" value="                    Cek Ulen                    " />
    </p>
    </form>
    </p>
    ';
    } else {
    Echo '
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" />
    <title>Hotfile Link Yakala</title>
    <body><br>
    <form action="cek.php" method="post">
    <p align="center">
    
    <tr><td><textarea name="metin" rows="3" cols="100"></textarea></td>
    <br>
    <br>
    <input type="submit" value="                    Cek Ulen                    " />
    </p>
    </form>';
    }
    ;
    ?>