RE: [PHP-WIN] Reading files from different user's

2003-11-19 Thread Gerardo Rojas
rdner [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 9:43 AM To: Gerardo Rojas; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Reading files from different user's try using http file upload. there is a lot on this in the php manual. then you can send the file back by sending headers firs

Re: [PHP-WIN] Reading files from different user's

2003-11-19 Thread Dave Gardner
try using http file upload. there is a lot on this in the php manual. then you can send the file back by sending headers first and then sending the data (it will prompt user with "save file as..." dialogue). --- Gerardo Rojas <[EMAIL PROTECTED]> wrote: > I am running IIS with PHP. I want to

[PHP-WIN] Reading files from different user's

2003-11-19 Thread Gerardo Rojas
I am running IIS with PHP. I want to be able to take a user's input (a file) and process it and write back generated files to the users' pc. Currently the script works fine but only on the actual server. Any help would be appreciated. How do I open or pass a file from a user to the webserver?