Re: [PHP] pause until page is loaded

2006-04-19 Thread Jochem Maas
Richard Lynch wrote: On Tue, April 18, 2006 4:19 pm, Benjamin Adams wrote: I created a script to redirect to a download auto. but it redirects before the Whole page is loaded. How do I pause until page is loaded? If you want to wait until the BROWSER loads the whole page, then the BROWSER ha

Re: [PHP] pause until page is loaded

2006-04-18 Thread Richard Lynch
On Tue, April 18, 2006 4:19 pm, Benjamin Adams wrote: > I created a script to redirect to a download auto. > but it redirects before the Whole page is loaded. > How do I pause until page is loaded? If you want to wait until the BROWSER loads the whole page, then the BROWSER has to tell you when it

Re: [PHP] pause until page is loaded

2006-04-18 Thread Satyam
Run it on the onLoad event of the Body entity. - Original Message - From: "Benjamin Adams" <[EMAIL PROTECTED]> To: "php Nichel" Sent: Tuesday, April 18, 2006 11:19 PM Subject: [PHP] pause until page is loaded I created a script to redirect to a downl

Re: [PHP] pause until page is loaded

2006-04-18 Thread Benjamin Adams
I tried it but it still stops half way through the page and then continues. On Apr 18, 2006, at 5:24 PM, Jay Blanchard wrote: [snip] I created a script to redirect to a download auto. but it redirects before the Whole page is loaded. How do I pause until page is loaded? [/snip] Page loading

RE: [PHP] pause until page is loaded

2006-04-18 Thread Jay Blanchard
[snip] I created a script to redirect to a download auto. but it redirects before the Whole page is loaded. How do I pause until page is loaded? [/snip] Page loading is client-side, but you can delay the redirect using sleep(). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

[PHP] pause until page is loaded

2006-04-18 Thread Benjamin Adams
I created a script to redirect to a download auto. but it redirects before the Whole page is loaded. How do I pause until page is loaded? Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Pause script

2006-03-27 Thread Richard Davey
On 27 Mar 2006, at 17:04, Pieter du Toit wrote: I want to pause script in php, in a while loop, so that a key must be pressed or a button must be clicked for the script to continue. Is this possible, i had a look at some functions, but it is not what i want. You mean when the script is call

Re: [PHP] Pause script

2006-03-27 Thread tedd
Hi I want to pause script in php, in a while loop, so that a key must be pressed or a button must be clicked for the script to continue. Is this possible, i had a look at some functions, but it is not what i want. Can someone point me in a direction to search or maybe solve this problem for me.

RE: [PHP] Pause script

2006-03-27 Thread Jay Blanchard
[snip] I want to pause script in php, in a while loop, so that a key must be pressed or a button must be clicked for the script to continue. Is this possible, i had a look at some functions, but it is not what i want. Can someone point me in a direction to search or maybe solve this problem for

[PHP] Pause script

2006-03-27 Thread Pieter du Toit
Hi I want to pause script in php, in a while loop, so that a key must be pressed or a button must be clicked for the script to continue. Is this possible, i had a look at some functions, but it is not what i want. Can someone point me in a direction to search or maybe solve this problem for me

Re: [PHP] Pause Timer ()

2003-09-25 Thread Jason Wong
On Friday 26 September 2003 03:11, Dan J. Rychlik wrote: > Is their a pause timer or timer function in PHP to pause a script for a > certain amount of seconds? sleep() -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Inter

Re: [PHP] Pause Timer ()

2003-09-25 Thread Robert Cummings
On Thu, 2003-09-25 at 15:11, Dan J. Rychlik wrote: > Is their a pause timer or timer function in PHP to pause a script for a certain > amount of seconds? Same as for almost every programming language under the sun: http://www.php.net/manual/en/function.sleep.php Cheers, Rob. -- .--

[PHP] Pause Timer ()

2003-09-25 Thread Dan J. Rychlik
Is their a pause timer or timer function in PHP to pause a script for a certain amount of seconds? -Dan

Re: [PHP] Pause for user input?

2002-11-20 Thread Jason Sheets
In CLI you can use readline See the readline section in the PHP manual at http://www.php.net/manual/en Jason On Wed, 2002-11-20 at 06:42, Larry Brown wrote: > Does anyone know of a method to pause during the processing of a script to > prompt a user for information and then incorporate the user'

RE: [PHP] Pause for user input?

2002-11-20 Thread Larry Brown
gurus. Thanks, Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: @ Edwin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:39 PM To: Larry Brown Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Pause for user input? "Larry Brown" <[EMAIL

Re: [PHP] Pause for user input?

2002-11-20 Thread @ Edwin
"Larry Brown" <[EMAIL PROTECTED]> wrote: > The idea is to have the script start to load, prompt for a question or more, > then use the data from the response to complete loading the page and avoid > having to post all of the variables from page to page to get all of the > responses back. A lot o

RE: [PHP] Pause for user input?

2002-11-20 Thread Larry Brown
ember ICCA (727) 723-8388 -Original Message- From: @ Edwin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 11:29 AM To: Larry Brown Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Pause for user input? Hello, "Larry Brown" <[EMAIL PROTECTED]> wrote: > Does an

Re: [PHP] Pause for user input?

2002-11-20 Thread @ Edwin
Hello, "Larry Brown" <[EMAIL PROTECTED]> wrote: > Does anyone know of a method to pause during the processing of a script to > prompt a user for information and then incorporate the user's response for > the remainder of the script? ... in addition to what the others already said, let me just as

Re: [PHP] Pause for user input?

2002-11-20 Thread Chris Shiflett
No. However, I'm sure whatever you are trying to do can be designed as two pages to yield the exact same user experience. Chris --- Larry Brown <[EMAIL PROTECTED]> wrote: > Does anyone know of a method to pause during the processing of a > script to prompt a user for information and then incorpo

Re: [PHP] Pause for user input?

2002-11-20 Thread Marek Kilimajer
Cannot be done this way, you need to use 2 pages Larry Brown wrote: Does anyone know of a method to pause during the processing of a script to prompt a user for information and then incorporate the user's response for the remainder of the script? Larry S. Brown Dimension Networks, Inc. (727) 72

Re: [PHP] Pause for user input?

2002-11-20 Thread Ernest E Vogelsinger
At 14:42 20.11.2002, Larry Brown spoke out and said: [snip] >Does anyone know of a method to pause during the processing of a script to >prompt a user for information and then incorporate the user's response for >the remainder of the script? -

[PHP] Pause for user input?

2002-11-20 Thread Larry Brown
Does anyone know of a method to pause during the processing of a script to prompt a user for information and then incorporate the user's response for the remainder of the script? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] pause

2001-01-10 Thread Alex Black
dio.com vox+510.666.0074 fax+510.666.0093 Saul Zaentz Film Center 2600 Tenth St Suite 433 Berkeley, CA 94710-2522 > From: [EMAIL PROTECTED] ("Shane McBride") > Newsgroups: php.general > Date: 10 Jan 2001 14:22:44 -0800 > Subject: Re: [PHP] pause > > If you find som

Re: [PHP] pause

2001-01-10 Thread Shane McBride
sday, January 10, 2001 4:42 PM Subject: RE: [PHP] pause > Funny, I would say forget javascript; I don't trust client side > validation. > > :) Just my two cents. > > Jeremy > > Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED] > http://www.

RE: [PHP] pause

2001-01-10 Thread jeremy brand
--Original Message- > From: jeremy brand [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 10, 2001 1:18 PM > To: Robert Ludvik > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] pause > > > You could use custom HTML meta content refresh tags. This is not a > PHP thin

RE: [PHP] pause

2001-01-10 Thread DanO
don't forget javascript! you could validate the form before posting to php. DanO -Original Message- From: jeremy brand [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2001 1:18 PM To: Robert Ludvik Cc: [EMAIL PROTECTED] Subject: Re: [PHP] pause You could use custom

Re: [PHP] pause

2001-01-10 Thread jeremy brand
MAIL PROTECTED] > Subject: [PHP] pause > > hi > i know i've noticed somewhere something about how to implement a Pause in PHP - > I mean, if ie.a user inputs a wrong number, the script says "Oh no, it's > wrong", waits a few seconds and redirects her back to input

Re: [PHP] pause

2001-01-10 Thread Toby Butzon
L PROTECTED]> Sent: Wednesday, January 10, 2001 3:18 PM Subject: [PHP] pause > hi > i know i've noticed somewhere something about how to implement a Pause in PHP - > I mean, if ie.a user inputs a wrong number, the script says "Oh no, it's > wrong", waits a few seconds a

[PHP] pause

2001-01-10 Thread Robert Ludvik
hi i know i've noticed somewhere something about how to implement a Pause in PHP - I mean, if ie.a user inputs a wrong number, the script says "Oh no, it's wrong", waits a few seconds and redirects her back to input form. i know i could say to him "hit a Back button...", just wondering if somethin