Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created August 26, 2010 19:51
Show Gist options
  • Save rogeriopvl/552109 to your computer and use it in GitHub Desktop.
Save rogeriopvl/552109 to your computer and use it in GitHub Desktop.
<?php
// pseudo-code
if (login == failed) {
$data = "LOGIN FAILED!!! - ";
}
else {
$data = "Login OK! - ";
}
$data .= "TIME: ".date('Y-m-d H:i:s')." IP: ".$_SERVER['REMOTE_ADDR'];
file_put_contents('mylog.log', $data, FILE_APPEND);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment