03-08-2010, 02:39 AM
|
#3 (permalink)
|
|
bajingo
Join Date: Feb 2010
Posts: 11
Thanks: 2
|
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.
|
|
|
|