Hello, I need software for reloading of a page.And if it can randomize the time, it will be great. Do you know such a software? Or extension? Thank you.
I would suggest you use code to randomize the refresh time of your page: <? $random = rand(5, 15); ?> <meta http-equiv="refresh" content="<?=$random;?>"; url=http://www.yourdomain.com/index.php"> PHP: hope this helps you in what you are doing
<?php $minSeconds = 1; $maxSeconds = 10; $page = 'http://domain.com'; sleep(rand($minSeconds, $maxSeconds)); header("Location: {$page}"); ?> PHP:
I created a stand alone application not too long ago that refreshes pages that you specify. If you are interested let me know