Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <body>
- <?php
- $ip = $_SERVER['REMOTE_ADDR']; //IP
- $meses = array('enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'); //Meses
- $nombre = 'logs'; //Nombre de archivo
- $dia = date('d'); //Dia
- $mes = date('m') - 1; //Mes
- $ano = date('Y'); //Año
- $hora = date('h:i:s'); //Hora
- $file = fopen($nombre.'.txt', 'a+'); //Abrimos archivo
- fwrite($file, 'La IP '.$ip.' accedio el '.$dia.' de '.$meses[$mes].' del '.$ano.' a las '.$hora.""); //Guardamos información
- fwrite($file, "\r\n======================================================================". PHP_EOL);
- fclose($file);//Cerramos archivo
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement