Page 1 of 1
open file dialog and saving multiple files
Posted: Sat Nov 29, 2008 8:00 pm
by allasso
Hello,
Two questions:
Is there a way to create a file open dialog that will open a file on the server?
also, it there a way the user can save multiple files all at one time?
Thank you,
Allasso
Re: open file dialog and saving multiple files
Posted: Sat Nov 29, 2008 11:33 pm
by requinix
allasso wrote:Is there a way to create a file open dialog that will open a file on the server?
Kinda. You can give them an Open/Save dialog and they'll download whatever you want them to.
allasso wrote:also, it there a way the user can save multiple files all at one time?
In one request? No. But you can use compression (eg, ZIP, RAR) to combine files together.
Re: open file dialog and saving multiple files
Posted: Sun Nov 30, 2008 3:57 pm
by allasso
tasairis wrote:
Kinda. You can give them an Open/Save dialog and they'll download whatever you want them to.
Hmmm... Could you elaborate on that? Not sure exactly what you mean. How would you do that?
tasairis wrote:
In one request? No. But you can use compression (eg, ZIP, RAR) to combine files together.
Good idea, thanks.
Allasso
Re: open file dialog and saving multiple files
Posted: Sun Nov 30, 2008 4:16 pm
by allasso
Maybe I wasn't too clear, what I want, is to be able to browse for a file on the server using a dialog box.
Re: open file dialog and saving multiple files
Posted: Sun Nov 30, 2008 4:44 pm
by requinix
allasso wrote:Maybe I wasn't too clear, what I want, is to be able to browse for a file on the server using a dialog box.
No. You'd have to make some PHP page(s) behave like a filesystem browser.
Re: open file dialog and saving multiple files
Posted: Mon Dec 01, 2008 2:02 am
by allasso
okay, thanks.
Allasso