Hey, Im trying to make it so you can download a file and never see its location. I was told to play with the MD5 encryption to do this.
Here is the download link
[php]
[/php]
It encrypts it beautifully and sends it to another file which would start downloading
[php]
<?php $url = $_GET['file']; $file = $_GET['relid']; echo ($url); echo ($file); ?>[/php]
2 questions for all of you experienced programmers out there, 1 am I heading the right direction, is this how you secure a URL? and 2 how do you decrypt md5, I know md5 (string) encrypts it but I havent found any site that tels how to reverse it. Thanks
Draco