how do you code a 1 second pause?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • NotGiven

    how do you code a 1 second pause?

    I need to loop through some code but pause each time for about 1 second.
    how do I do this? Thanks.


  • Matthias Esken

    #2
    Re: how do you code a 1 second pause?

    "NotGiven" <noname@nonegiv en.net> schrieb:
    [color=blue]
    > I need to loop through some code but pause each time for about 1 second.
    > how do I do this? Thanks.[/color]

    RTFM: http://www.php.net/manual/en/function.sleep.php

    sleep(1)

    Regards,
    Matthias

    Comment

    • NotGiven

      #3
      Re: how do you code a 1 second pause?

      I was looking for the phrase that I could search on - thanks anyway
      "Matthias Esken" <muelleimer2004 nospam@usenetve rwaltung.org> wrote in
      message news:c1o6vv.1i8 .1@usenet.esken .de...[color=blue]
      > "NotGiven" <noname@nonegiv en.net> schrieb:
      >[color=green]
      > > I need to loop through some code but pause each time for about 1 second.
      > > how do I do this? Thanks.[/color]
      >
      > RTFM: http://www.php.net/manual/en/function.sleep.php
      >
      > sleep(1)
      >
      > Regards,
      > Matthias[/color]


      Comment

      • CountScubula

        #4
        Re: how do you code a 1 second pause?

        Thanks anyways? Am I missing something? He gave you the code/command to do
        it.

        --
        Mike Bradley
        http://www.gzentools.com -- free online php tools
        "NotGiven" <noname@nonegiv en.net> wrote in message
        news:BD20c.4122 $6e7.3101@bigne ws1.bellsouth.n et...[color=blue]
        > I was looking for the phrase that I could search on - thanks anyway
        > "Matthias Esken" <muelleimer2004 nospam@usenetve rwaltung.org> wrote in
        > message news:c1o6vv.1i8 .1@usenet.esken .de...[color=green]
        > > "NotGiven" <noname@nonegiv en.net> schrieb:
        > >[color=darkred]
        > > > I need to loop through some code but pause each time for about 1[/color][/color][/color]
        second.[color=blue][color=green][color=darkred]
        > > > how do I do this? Thanks.[/color]
        > >
        > > RTFM: http://www.php.net/manual/en/function.sleep.php
        > >
        > > sleep(1)
        > >
        > > Regards,
        > > Matthias[/color]
        >
        >[/color]


        Comment

        Working...