Hello,i want to hide my actual download link from my website. when anyone click the contents they got direct download link.
here is my code
$get_path=explode("/downloads/",$path[0]);
$filename=$get_path[1];
$download=$get_path[0]."/downloads/".$filename;
echo "<a href=\"".$download."\">Get File</a>";
they got direct link like this
i want to make it like http://localhost/downloads/6885a6c38d6e9bcc201326902269658a (its md5)
or any other method you should prefer.
thnx