rdsedmundo

[PHP] Contador de Visitas

Jul 11th, 2012
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. /* by edi472/kyl3 */
  3. $arquivo = "visitas.txt";
  4. if ( !file_exists($arquivo) ) {
  5.  $t = fopen($arquivo, 'w');
  6.  fwrite($t, '0');
  7.  fclose($t);
  8. };
  9. chmod($arquivo, 0777);
  10. $visitas = fopen($arquivo, 'r');
  11. $d = fread($visitas, filesize($arquivo));
  12. $c = $d;
  13. $c++;
  14. fclose($visitas);
  15. $aum = fopen($arquivo, 'w');
  16. fwrite($aum, $c);
  17. fclose($aum);
  18. exit($d);
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment