Hello well I want a simple login sys, That saves all deatails to a txt file, I want it so that when a name is entered then it will name the file as the name...
So when someone create an acct, There will be a place for there name, there Email & there password...I hope you get it so far..
Well here is the php
<?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);
?>
I do have a form as well but you will know whats on it by looking at the code here !
Thank-You