sorry, hab das auch ziemlich so aus dem Link übernommen:
Code:
<?php
$datei = "datei.txt";
$datum = date("Y.m.d | h:i:s");
$fulltext = $datum." | ".$_SERVER['QUERY_STRING']."\r\n";
if (file_exists ($datei) && is_writable ($datei))
{
$
handle = fopen ($datei, a);
fwrite ($
handle,$fulltext);
fclose ($
handle);
}
?>