PHP repeat loop X times help?

Kelly H

New member
Here is what i am wanting to do.....

$loop={
$time=$time(); (Get server time time)
$upcoming=$time+ 5 min (Add 5 min to $time)
}
If $upcoming time is greater then $time then

{
include_once "a.php";
}

else if

$time is less then $upcoming then

{
There is where i am unsure about.
Repeat $loop after 3 min;
}


How do i do this?
 
Back
Top