joecooper Posted March 14, 2006 Share Posted March 14, 2006 im trying to think up a way where the user can download a file, without knowing the download link, (so that i can make a que system ect...). Ive tryed to use include("file.exe"); as a test.. didnt think it would work. but it has the same idea, grabbing a file without the user knowning where it is located.Any code examples? Quote Link to comment Share on other sites More sharing options...
hitman6003 Posted March 14, 2006 Share Posted March 14, 2006 The forums are acting funny today, so I'll do what I can:[code]$ name = "path/to/f ile.txt";$ type = m ime_content_type($name);$ size = f ilesize($name);h eader("C ontent-length: $size");h eader("C ontent-type: $type");h eader("C ontent-Disposition: attachment; f ilename=$ name");echo f ile_get_contents($ file);[/code]remove the random spaces I've put throughout Quote Link to comment Share on other sites More sharing options...
hitman6003 Posted March 14, 2006 Share Posted March 14, 2006 Crazy forum software...caused a double post. Quote Link to comment Share on other sites More sharing options...
joecooper Posted March 15, 2006 Author Share Posted March 15, 2006 Lol, thanks!. i will try and find a working version of it Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.