Advertisement
Squito

Redirect to a different link every 2 hours - cron+txt file

Jan 25th, 2017
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. Redirect.php
  2. <?PHP
  3. $sites=array("www.example1.com", "www.example2.com", "www.example2.com", "www.example3.com", "www.example4.com", "www.example5.com", "www.example6.com");
  4. $a=file_get_contents("counter.txt");
  5. header("Location: ".$sites[$a]);
  6. ?>
  7.  
  8. Cron.php
  9. <?PHP
  10. $a=file_get_contents("counter.txt");
  11. $a++;
  12. $f=fopen("counter.txt", "w");
  13. fwrite($f, $a%6); //change the number if you add or remove a site/sites
  14. fclose($f);
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement