Plz help to write dl.php

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Plz help to write dl.php

    some days ago i asked a ques....
    i wanna make a grabber that grab jar games.i find this script here named tegos_java-1274101919

    there is a code <a href="http://tegos.ru/java/new-java/'.$name.'.jar">'.$name.'.jar</a><br />

    is it possible to hide the download url so that visitor ca not think or understand that mine is a grabber site

    poontop give me a sloution 4 me
    use base encode to encode the link ... Then use dl.php?u=encoded link here
    And in dl.php decode the link send by 'u' variable ...and make a header redirection ...


    i completed the 1st step as porntop said..
    now my code is code <a href="dl.php?u=aHR0cDovL21vYmlsZS54c2hhcmUuY29tL3Z pZC8='.$name.'.jar">'.$name.'.jar</a><br />

    As i dont know php so i can not make the dl.php file as porntop said....
    if anybody make that file 4 me ...it will be a great pleasure 4 me....

    #2
    easist soloution for you would be just to use a header
    eg:
    download.php
    PHP Code:
    <?php
        header
    ("Location: http://tegos.ru/java/new-java/".$_GET['name'].".jar");
    ?>
    http://yousite.con/download.php?name= jar name

    Comment

    Working...
    X