Re: [PHP] Progress Bar

2004-05-02 Thread Burhan Khalid
Craig Gardner wrote: I'm working on a script that will automatically download and burn an ISO to a CD, when passed the filename of the ISO and I want to use some sort of progress bar to show how much of the download/burn is complete. I was originally going to use wget to download the file,

[PHP] progress bar for use with PHP uploads

2002-11-12 Thread Kenn Murrah
Greetings Can anyone point me in the direction of a Javascript code snippet that would display a progress bar for a PHP upload? I'm sure it can be done that way, but honestly, I lack the Javascript skills to make it happen Any and all help would be appreciated. Thanks. Kenn

Re: [PHP] progress bar for use with PHP uploads

2002-11-12 Thread Ernest E Vogelsinger
At 17:27 12.11.2002, Kenn Murrah spoke out and said: [snip] Can anyone point me in the direction of a Javascript code snippet that would display a progress bar for a PHP upload? I'm sure it can be done that way, but honestly, I lack the Javascript skills

Re: [PHP] progress bar for use with PHP uploads

2002-11-12 Thread 1LT John W. Holmes
: Kenn Murrah [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Tuesday, November 12, 2002 11:27 AM Subject: [PHP] progress bar for use with PHP uploads Greetings Can anyone point me in the direction of a Javascript code snippet that would display a progress bar for a PHP upload? I'm

[PHP] Progress bar for uploading files

2002-10-16 Thread Oscar F
Hello, I'm working on a file uploading script, but I need to know if there is a way to know what's the progress of the file, so I can make la a progress bar?.. Any ideas? Please?. Thanks in advance. Oscar F.-

Re: [PHP] Progress bar for uploading files

2002-10-16 Thread Matt
From: Oscar F [EMAIL PROTECTED] Sent: Wednesday, October 16, 2002 2:17 PM Subject: [PHP] Progress bar for uploading files I'm working on a file uploading script, but I need to know if there is a way to know what's the progress of the file, so I can make la a progress bar?.. Any ideas

Re: [PHP] Progress bar for uploading files

2002-10-16 Thread Joseph W. Goff
] Progress bar for uploading files Hello, I'm working on a file uploading script, but I need to know if there is a way to know what's the progress of the file, so I can make la a progress bar?.. Any ideas? Please?. Thanks in advance. Oscar F.- -- PHP General Mailing List (http

RE: [PHP] Progress bar for uploading files

2002-10-16 Thread Daniel Masson
- Licenciamiento de Software -Mensaje original- De: Oscar F [mailto:[EMAIL PROTECTED]] Enviado el: miƩrcoles, 16 de octubre de 2002 13:17 Para: [EMAIL PROTECTED] Asunto: [PHP] Progress bar for uploading files Hello, I'm working on a file uploading script, but I need to know

[PHP] progress bar for a server side process

2002-09-03 Thread electroteque
hi there i have created a script to regenerate thumbnails for a photo gallery , i have changed my code to use gd true color although it takes forever now , i have it generating 20 at a time then doing the rest but still takes forever , i know its impossible to generate a true progress bar for

Re: [PHP] progress bar for a server side process

2002-09-03 Thread Marek Kilimajer
I've got a nice progress bar with this code: for($i=0;$i10;$i++) { flush(); sleep(1); echo 'img src=img.gif width=20 height=20 border=0 alt=X'; } But read manual for the flush() function. electroteque wrote: hi there i have created a script to regenerate thumbnails for a photo

[PHP] progress bar for uploading files

2002-08-16 Thread electroteque
hi guys i was wondering if there was anyway to have a progress bar for uploading images ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] progress bar for uploading files

2002-08-16 Thread Peter J. Schoenster
On 16 Aug 2002 at 23:40, electroteque wrote: hi guys i was wondering if there was anyway to have a progress bar for uploading images ? TMTOWDI, but here is a way I did something similar. I was spidering remote sites and to get user's data and store in a database and the user could not

[PHP] progress bar

2002-08-12 Thread Serdar Sokmen
Hi, I would like to add a progress bar to an installtion program I'm writing in PHP. I basically have one function that I call, it takes about 30 seconds or so to finish executing... I haven't done such a thing before. Can anyone plese suggest me some ideas... Many Thanks Serdar -- PHP

Re: [PHP] progress bar

2002-08-12 Thread Justin French
Unless you can break the process up into a series of smaller process' (and use meta refresh's or javascript redirects to step through each process), you're out of luck... because the browser can't possibly know what's happening in the background on the server. For a cheap and nasty solution, how

RE: [PHP] progress bar

2002-08-12 Thread Tom Kohnen
know if it works, but that's the way it'd do it ;) - Tom -Original Message- From: Serdar Sokmen [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 12:06 PM To: [EMAIL PROTECTED] Subject: [PHP] progress bar Hi, I would like to add a progress bar to an installtion program I'm

RE: [PHP] progress bar

2002-08-12 Thread Dan Hardiker
PROTECTED]] Sent: Monday, August 12, 2002 12:06 PM To: [EMAIL PROTECTED] Subject: [PHP] progress bar Hi, I would like to add a progress bar to an installtion program I'm writing in PHP. I basically have one function that I call, it takes about 30 seconds or so to finish executing... I haven't

Re: [PHP] progress bar

2002-08-12 Thread lallous
n't know if it works, but that's the way it'd do it ;) - Tom -Original Message- From: Serdar Sokmen [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 12:06 PM To: [EMAIL PROTECTED] Subject: [PHP] progress bar Hi, I would like to add a progress bar to an installtion program I'm