Jump to content

[SOLVED] Simple IP Logger.


Im Jake

Recommended Posts

Well, This is my code.

 

<center>Your IP is <b><?php
echo $_SERVER['REMOTE_ADDR'];
?></b>. It has Been logged for legal purposes.</center>





<?php

$v_ip = $REMOTE_ADDR;
$v_date = date("l d F H:i:s");

$fp = fopen("legal.txt", "a");
fputs($fp, "IP: $v_ip - DATE: $v_date\n\n");
fclose($fp);

?>

 

But, When I view legal.txt

 

this is what it gives me.

 

IP:  - DATE: Tuesday 30 June 03:58:01

IP:  - DATE: Tuesday 30 June 03:58:20

IP:  - DATE: Tuesday 30 June 03:58:41

IP:  - DATE: Tuesday 30 June 03:59:34

 

Why isn't it showing the IP?

Link to comment
https://forums.phpfreaks.com/topic/164196-solved-simple-ip-logger/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.