[PHP] Re: progress bar for uploading files

2002-08-16 Thread Philip Hallstrom
You're best bet would be to make an animated gif that looks like a progres bar (or twirling icon or whatever). Then when the users hits submit, turn it on... in the same way you do image rollovers, etc... Then it will spin until the form is submitted... On Fri, 16 Aug 2002, electroteque wrote:

RE: [PHP] Re: progress bar for uploading files

2002-08-16 Thread Brian V Bonini
Bet this would be perfect for combining Flash and PHP. -Original Message- From: Philip Hallstrom [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:57 AM To: electroteque Cc: [EMAIL PROTECTED] Subject: [PHP] Re: progress bar for uploading files You're best bet would

RE: [PHP] Re: progress bar for uploading files

2002-08-16 Thread Jay Blanchard
I had a rather weird thought, but it is Friday after all :^] How about setting a small IFRAME in the upload diaog box? Then you could do a couple of things; a.) Place a small animated GIF in the IFRAME that moves left to right or from side to side until the upload completes. 2.) Use the GD

[PHP] Re: progress bar for uploading files

2002-08-16 Thread Philip Hallstrom
This wouldn't work for uploading files however since the long part of the process is the act of uploading the file and until that completes your save.php (or whatever) isn't called. So in regards to file uploading it has to be done with Javascript. What you do below is great for scripts that

RE: [PHP] Re: progress bar for uploading files

2002-08-16 Thread Daniel Masson
I ... Had to do something like that recently .. Sending files through ftp_put(); i just send the file .. And when user clicks 'Send' button ... A pop-up appears and gets the file size of the remote file and comparing with de local size you can build a progress bar This pop-up uses the tag

[PHP] Re: progress bar for uploading files

2002-08-16 Thread Peter J. Schoenster
On 16 Aug 2002 at 12:38, Philip Hallstrom wrote: This wouldn't work for uploading files however since the long part of the process is the act of uploading the file and until that completes your save.php (or whatever) isn't called. So in regards to file uploading it has to be done with