Here is the code I am trying to run it will load an iframe for every entry found in my DB, I am trying to make it sleep for 10 seconds between each iframe with
sleep(10);
can someone show me where to add it
$train = "<table width=800 bgcolor=F0F0F0 aling=center><tr><td colspan=4> $pages<br></td></tr>";
$i=0;
while ($addall = mysql_fetch_assoc($res))
{
if ($i/2 == ceil($i/2)) $train .= "<tr>";
$i++;
$train .= "<td width=120 valign=top><BR><iframe src=\"potspace.php?u=$addall[intId]\" width=\"400\"></iframe>";
}
$train .= "<tr><td colspan=4><br><br> $pages<br><br></td></tr></table>";