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
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
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
)
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,
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