Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Last active March 30, 2016 19:44
Show Gist options
  • Save FreeFly19/8c7537634b3196fad0c224984ff907f9 to your computer and use it in GitHub Desktop.
Save FreeFly19/8c7537634b3196fad0c224984ff907f9 to your computer and use it in GitHub Desktop.
Masha hazker
<?php
//***************
//тут багато коду
//***************
page_footer();
$date = date("Y-m-d H:i:s");
$userIp = $_SERVER['REMOTE_ADDR'];
$lastLineInFile = "[$date] $userIp\r\n";
$file = fopen("file.txt", "a+");
fwrite($file, $lastLineInFile);
fclose($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment