RE: [PHP-DB] Processing Page

2003-02-27 Thread Gary . Every
Check out http://www.php.net/manual/en/function.ob-flush.php the ob_flush command. You could put an animated gif like an hourglass with a please wait at the beginning of your html output, perform an ob_flush command to put that info out to the browser, then perform your sql. After the sql

RE: [PHP-DB] Processing Page

2003-02-27 Thread Jonathan Villa
You could do this very easily using a HTML page with the correct META tags. I am working on a Domino Project right now that does just that. After a page is submitted, the user is directed to an html page which sits for about 45 seconds. This HTML page just says something like Your information

RE: [PHP-DB] Processing Page

2003-02-27 Thread Jonathan Villa
META HTTP-EQUIV=refresh CONTENT=5;url=http://yourpagehere; 5 = time to wait --- Jonathan -Original Message- From: Jonathan Villa [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:10 PM To: 'Aspire Something'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Processing Page

RE: [PHP-DB] Processing Page

2003-02-27 Thread Jonathan Villa
META HTTP-EQUIV=refresh CONTENT=5;url=http://yourpagehere; 5 = time to wait --- Jonathan -Original Message- From: John A DAVIS [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:23 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Processing Page What are the correct

Re: [PHP-DB] Processing Page

2003-02-27 Thread Aspire Something
: Friday, February 28, 2003 1:43 AM Subject: RE: [PHP-DB] Processing Page META HTTP-EQUIV=refresh CONTENT=5;url=http://yourpagehere; 5 = time to wait --- Jonathan -Original Message- From: Jonathan Villa [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:10 PM

RE: [PHP-DB] Processing Page

2003-02-27 Thread Jonathan Villa
work if you could set the field being used as a point of a reference when the other process is running. ??? --- Jonathan -Original Message- From: Aspire Something [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:56 PM To: php-db Subject: Re: [PHP-DB] Processing Page

Re: [PHP-DB] Processing Page

2003-02-27 Thread Adam Royle
[mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:56 PM To: php-db Subject: Re: [PHP-DB] Processing Page Thanks every one ... All the method you told me are static it does not look if the sql statemet being exec by php along with backend has finished its job . I only wanted to show

Re: [PHP-DB] Processing Page

2003-02-27 Thread olinux
-Original Message- From: Aspire Something [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:56 PM To: php-db Subject: Re: [PHP-DB] Processing Page Thanks every one ... All the method you told me are static it does not look if the sql statemet being exec by php