Snippet details
ID: 64
Viewed: 2289
Added: 2002-01-28
Version:
Sorry no demo
a timer to count down a certain time.
General Details
Snippet uploaded by: snippet
Email : webmaster@snippetlibrary.com
Snippet By: snippet
<!---Head--->
<?php
$mtime1 = microtime();
$mtime1 = explode(" ",$mtime1);
$mtime1 = $mtime1[1] + $mtime1[0];
$starttime = $mtime1;
$mtime2 = microtime();
$mtime2 = explode(" ",$mtime2);
$mtime2 = $mtime2[1] + $mtime2[0];
$endtime = $mtime2;
$totaltime = ($endtime - $starttime);
$Time = "<font size="1" face="verdana"><center>$totaltime seconds processing time</center></font><br>";
?>
<!---Body--->
//Now just Place
<?echo $Time ?>
//where you want it to be displayed
//Now if you want this to display as an include,
//copy the above code and paste it in your text
//editor and save the file
//as render.php and add this to it at teh bottom.
echo "<font size="1" face="verdana"><center>$totaltime seconds processing time</center></font><br>";
//just include it like this,
//in your footer or whatever.
<?php include('render.php') ?>
No Reviews to show
