Re: [PHP-WIN] File Uploader - Progress

2002-09-17 Thread Ernani Joppert Pontes Martins
I've made something to show download percentage with Java, with an Applet So then if you want to I can send you a class that downloads a file with a download status bar on it. Then you may handle your problem. "Stuart Dallas" <[EMAIL PROTECTED]> escreveu na mensagem 3CD2FE47.2527.AF1141@localho

Re: [PHP-WIN] File Uploader - Progress

2002-05-03 Thread Jason Soza
$.02 - just learning all this stuff myself! Jason Soza - Original Message - From: "Stuart Dallas" <[EMAIL PROTECTED]> Date: Friday, May 3, 2002 12:16 pm Subject: Re: [PHP-WIN] File Uploader - Progress > On 3 May 2002 at 15:57, Mike Flynn wrote: > > At 01:21

Re: [PHP-WIN] File Uploader - Progress

2002-05-03 Thread Stuart Dallas
On 3 May 2002 at 15:57, Mike Flynn wrote: > At 01:21 AM 5/4/02 +0530, Arijit Chaudhuri wrote: > >File uploads are a breeze to code in php. However, I have got a > >request from a client to show the percentage uploaded or some graphic > >progress monitor as the upload process is difficult to track

Re: [PHP-WIN] File Uploader - Progress

2002-05-03 Thread Mike Flynn
Hi Arijit, Unfortunately, I don't think there is. The file data is sent in the *request* for the PHP page, meaning the PHP page doesn't even get sent back to the user until the file is done uploading. So there's not really any choice but for the user to view the page with the upload form unt

Re: [PHP-WIN] File Uploader - Progress

2002-05-03 Thread Scott Carr
File Uploads are a client side "post" feature, aren't they? Is there a browser that offers this functionality? -- Scott Carr OpenOffice.org Whiteboard-Doc Maintainer http://whiteboard.openoffice.org/doc/ Quoting Arijit Chaudhuri <[EMAIL PROTECTED]>: > Hi all, > > File uploads are a breeze to

[PHP-WIN] File Uploader - Progress

2002-05-03 Thread Arijit Chaudhuri
Hi all, File uploads are a breeze to code in php. However, I have got a request from a client to show the percentage uploaded or some graphic progress monitor as the upload process is difficult to track for large files. Is there any way of coding such a progress tracker for file uploads in php?