Re: [PHP-DB] Delay Confirmation....

2002-12-09 Thread Paul Burney
on 12/9/02 9:35 AM, dufronte at [EMAIL PROTECTED] appended the following bits to my mbox: > Actually, I want to make a script that confirm the user to wait for 10 > seconds before proceed to the next step. First the message "Please wait > for 10 seconds while we're processing your request..." will

RE: [PHP-DB] Delay Confirmation....

2002-12-09 Thread dufronte
ameson (USA) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:40 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Delay Confirmation <<<<>>>> Anyway... the what I was saying: function wait10SecondsAndThenGoToADifferentPage(){ setTimeout("window.location.hr

RE: [PHP-DB] Delay Confirmation....

2002-12-09 Thread Michael Hazelden
Use this: print("Please wait for 10 seconds while we're processing your request..."); flush(); sleep(10); Should do it for you. Read up on output buffering on PHP.Net -Original Message- From: dufronte [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 14:36 To: [EMAIL PROTECTED] Subject

RE: [PHP-DB] Delay Confirmation....

2002-12-09 Thread Ryan Jameson (USA)
) Sent: Monday, December 09, 2002 7:38 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Delay Confirmation javascript seems to be a more likely candidate for this. The function you'd use is: -Original Message- From: dufronte [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

RE: [PHP-DB] Delay Confirmation....

2002-12-09 Thread Ryan Jameson (USA)
javascript seems to be a more likely candidate for this. The function you'd use is: -Original Message- From: dufronte [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 7:36 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Delay Confirmation Hi, I'm still new in PHP..., I have