Re: [PHP] processing status page

2003-02-17 Thread Jeff Schwartz
Faking it with Javascript doesn't really work because the termination of the Javascript isn't tied to the completion of the processing. Here's how we're doing it for a new anti-spam product: results.html ?php if ($display): // display results else: // save form

[PHP] processing status page

2003-02-15 Thread Brendon
Hello, How can I create a page that notifies the user their request is being processed after they click a submit button? For example, they type in some information, the page then says Your request is processing... Maybe a few animated ... 's for eyecandy, and then once the process is

Re: [PHP] processing status page

2003-02-15 Thread Ray Hunter
Are you using a form to get the input from the user... One way that I do it is with Javascript...that will be the easiest bet for you... On Sat, 2003-02-15 at 15:15, Brendon wrote: Hello, How can I create a page that notifies the user their request is being processed after they click a

Re: [PHP] processing status page

2003-02-15 Thread Brendon
Yes, I'm using a form. How do you do it with Javascript? Do you have an example you can give? Brendon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] processing status page

2003-02-15 Thread Ray Hunter
I can't remember the timer or sleeper function in javascript, but there is one... When you submit the form to the processing script (defined in your form tag) then you can have a javascript that displays a graphic or text for a few seconds that states Processing data... Then use the onload