View Single Post
Old 03-08-2010, 02:39 AM   #3 (permalink)
skibbli
bajingo
 
skibbli's Avatar
 
Join Date: Feb 2010
Posts: 11
Thanks: 2
skibbli is on a distinguished road
Default

assuming the files you'd be linking to are all in one place. you could use base64?

PHP Code:
$file base64_decode($_GET[id]);
if (
file_exist($file)) {
 
header("location: filedir/$file");
} else {
 echo 
"<title>404</title><h1>404</h1>";


Last edited by skibbli : 03-08-2010 at 04:21 AM.
skibbli is offline  
Reply With Quote