README.md

December 4, 2022 · View on GitHub

IP Logger / Traffic Log

Description

Logs IP addresses and Traffic

More Info

make iplog.txt and CHMOD 777

IP and Date

Submitted On
ByKyle Shannon
LevelBeginner
User Rating5.0 (15 globes from 3 users)
CompatibilityPHP 3.0, PHP 4.0
CategoryMiscellaneous
WorldPHP
Archive File

Source Code

<?php
//       (( Script Written By Kyle Shannon ))
// ((           www.myownpill.com            ))
// __________________________________________________________________________
// Instructions
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
// CHMOD iplog.txt to 777
// Put this script inside a .php file on your site
// For each person who visits their IP address will be logged in the iplog.txt
// __________________________________________________________________________
// The Code
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
//
$td = date("F jS");
 $ip = $REMOTE_ADDR; // Set the variable as their ip address
 $fh = fopen("iplog.txt",'a+'); // Open the text file and tell it to add
  fputs($fh, "$ip : $td<br><br>"); // Add the ip address onto the next line
  fclose($fh); // Close the text file
//
// __________________________________________________________________________
// End Code
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
//
?>