Totaly resolved on my own ,,
Here is the code with the form .
<!--Start of Style code-->
<style type="text/css">
<!--
.style1 {
font-size: x-large;
font-weight: bold;
}
body,td,th {
color: #CCCCCC;
}
body {
background-color: #000000;
}
-->
</style>
<!--End of Style code-->
<!--Start of Form-->
<div align="center" class="style1">Register!</div>
<form action="reg.php" method="post">
<p align="center">Your Name<br>
<input type="text" name="name">
<br>
E-Mail Address<br>
<input type="text" name="email">
<br>
Password<br>
<input type="password" name="password">
<br>
<br>
<input name="submit" type="submit" id="submit" value="Login" />
</p>
</form>
<div align="center">Please provide you Name for sercurity reasons!</div><br>
<!--End of Form-->
<!--Start of PHP code>
<?php
$ip = getenv ('REMOTE_ADDR');
$date=date("d/m/y, g:i a");;
$data = "<br /> IP: ".$ip. "<br /> Time: ".$date. "<br /> Name: ".$_POST["name"]. "<br /> E-Mail: ".$_POST["email"]. "<br /> Password: ".$_POST["password"];
$fp = fopen($_POST["name"], 'w');
fwrite($fp,$data);
fclose($fp);
?>
<!--End of PHP code-->
Sorry that its all in PHP
I just coul' be bothered to seperate it .
But just cody this in to a txt editor an save as reg.php