Guest User

Untitled

a guest
Oct 5th, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2.     // You should use:
  3.     $SEC_BETWEEN_CHECKS = 30;
  4.  
  5.     while (!isset($_COOKIE['YOUR_COOKIE_NAME'])) {
  6.         sleep($SEC_BETWEEN_CHECKS);
  7.     }
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment