Hello Guys,
I have found this counter, but i want it to refresh the number every 1minute, so for example it says "19" and the end user keeps refreshing the page, he wont see the number changing untill its been 1min.
<?php
function randomGen($min, $max)
{
// setup our seed
srand((float) microtime() * 10000000);
// Generate the number
$random = rand($min,$max);
// Return the number
return $random;
}
/*adjust these numbers to display a random number within a range-
make sure the low number is on the left.*/
$random_number = randomGen(10,25);
echo "<br/>There are " .$random_number. " visitors online";
?>
But i am also happy to use this, but i want the number to start from 11
http://www.phpinclude.net/scripts.php?T=10
Thank you