
May 3rd, 2003, 07:36 PM
|
|
Contributing User
|
|
Join Date: Oct 2002
Location: Washington, DC
Posts: 317
Time spent in forums: 2 m 3 sec
Reputation Power: 6
|
|
Quote:
For example, if I upload a file called test.zip when I go to download it, it downloads downloadfile.zip. The contents of the zip file are correct and everything when I download it, but the name is wrong. It renames the file to the name of my downloadfile.php file |
I have'nt read the article, but if you are sending a download using header() - you can name the file in the header() call:
PHP Code:
header( "Content-type: application/octet-stream" );
header( "Content-disposition: attachment; filename=$filename" );
Where $filename holds the name of the file...
__________________
~ Joe Penn
We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set?
Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you.
|