What i want to do is not to re-directo since
the file that I want to fetch is not within the DocumentRoot.
/main_dir
|public (document_root)
| files (the dir i want to read)
Its not possible to redirect a browser to a page not within the document root. right?
So, what i did was to write a script that reads the ./files directory for a certain file and echos any data ... it gets.. but before echoing, i have to send a header that tells the content-types, and filename..
I know already how to send a content-type
Header("Content-Type: $ctyle");
i want to know of any header that tells the browser that this data should be of this filename... so that it will not be saved with filename same as with the script.