In This Example
Line 1: Echo "1";
Line 2: Wait here
Line 3: Echo "2";
Using PHP
-------------
How can let the script wait some time (For example 5 Sec) in the next line and after that continue ?
Printable View
In This Example
Line 1: Echo "1";
Line 2: Wait here
Line 3: Echo "2";
Using PHP
-------------
How can let the script wait some time (For example 5 Sec) in the next line and after that continue ?
something like this
http://www.snippetlibrary.com/viewht...id=6&siteid=64
lol, ur site just has everything doesnt it ? :pQuote:
Originally posted by scoutt
something like this
http://www.snippetlibrary.com/viewht...id=6&siteid=64
that's what it's for :cool:
Your users might get confused when your page always just stops loading at a certain point then finishes...
if what your saying is: do the job then move along as fast as possible, then i totally agree :)Quote:
Originally posted by filburt1
Your users might get confused when your page always just stops loading at a certain point then finishes...
Echo 'Line 1/n';
Echo 'Line 2/n';
Echo 'Line 2/n';
lol, ur just making all the good calls arent u :rolleyes:Quote:
Originally posted by carp
Echo 'Line 1/n';
Echo 'Line 2/n';
Echo 'Line 2/n';
i think u can use the time() function... but u have to refresh the page after the desired interval to display the next echo.