Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /* by edi472/kyl3 */
- $arquivo = "visitas.txt";
- if ( !file_exists($arquivo) ) {
- $t = fopen($arquivo, 'w');
- fwrite($t, '0');
- fclose($t);
- };
- chmod($arquivo, 0777);
- $visitas = fopen($arquivo, 'r');
- $d = fread($visitas, filesize($arquivo));
- $c = $d;
- $c++;
- fclose($visitas);
- $aum = fopen($arquivo, 'w');
- fwrite($aum, $c);
- fclose($aum);
- exit($d);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment