Guest User

Untitled

a guest
Jun 21st, 2012
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.     $file = "protection_timestamp.txt";
  3.     $handle = fopen($file,"r+");
  4.     $timestamp = fread($handle,filesize($file));
  5.     if($timestamp < time())
  6.     {
  7.         fwrite($handle,time());
  8.         // Code
  9.     }
  10.     fclose($handle);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment