Login     Sign up
i need some help with the code i am looking to log my user's ip with there username.html file
sujay sreedhar (@webkoot)
Join date: Nov 11th 2010
Community posts: 98
View Profile
Send Message

i need some help with the code i am looking to log my user's ip with there username.html file
i made the code
[Code]
$ip = $_SERVER['REMOTE_ADDR'];
$pagina = '.$user['username'].';
$datum = date("d-m-y / H:i:s");
$invoegen = $datum . " - " . $ip . " - " . $pagina . "<br />";
$fopen = fopen('.$user['username'].'.html, "a");
fwrite($fopen, $invoegen);
fclose($fopen);
[/code]

but when i put in i am geting an blank page when i insert that script what will i do can any one help

172 months ago