Re: [PHP] Pausing in PHP

2003-11-12 Thread Nathan Taylor
sleep() should do what you need.

www.php.net/sleep

Regards,
Nathan
  - Original Message - 
  From: Donpro 
  To: php list 
  Sent: Monday, November 10, 2003 12:49 PM
  Subject: [PHP] Pausing in PHP


  Hi,
   
  Is there a PHP function that would allow the script execution to pause 'N'
  seconds?  This is analogous to the dBase inkey() function.
   
  Thanks,
  Don

  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Pausing in PHP

2003-11-10 Thread Donpro
Hi,
 
Is there a PHP function that would allow the script execution to pause 'N'
seconds?  This is analogous to the dBase inkey() function.
 
Thanks,
Don

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Pausing in PHP

2003-11-10 Thread Dan Joseph
Hi,


 Is there a PHP function that would allow the script execution to pause 'N'
 seconds?  This is analogous to the dBase inkey() function.

sleep(20);

20 = seconds

-Dan Joseph

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Pausing in PHP

2003-11-10 Thread Chris Shiflett
--- Donpro [EMAIL PROTECTED] wrote:
 Is there a PHP function that would allow the script execution to pause
 'N' seconds? This is analogous to the dBase inkey() function.

When I search Google for PHP pause, the firt result mentions the sleep()
function. Did you try finding the answer yourself first?

Please try to do so in the future. Thanks.

Chris

=
My Blog
 http://shiflett.org/
HTTP Developer's Handbook
 http://httphandbook.org/
RAMP Training Courses
 http://www.nyphp.org/ramp

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php