test
endriu
$ip = $_SERVER['REMOTE_ADDR'];
$kiedy=date("Y-m-d H:i:s");
$webcoding = " - ";
$webcoding2 = "\n";
$file = "ip.html";
$fp = fopen($file, "a");
flock($fp, 2);
fwrite($fp, $kiedy." ".$webcoding."
".$ip." ". $webcoding2);
flock($fp, 3);
fclose($fp);
?>