Jump to content

wolfwood77

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Everything posted by wolfwood77

  1. Dear PHPFreaks, I am new to PHP. Currently I'm trying to get a PHP login to write to file and use that file to register member and then allow users to login by reading through the file. Here is the code so far. Any help would be grateful. <body> <form action="register.php" method="post"> <h2>Register:</h2> <p> <label for="runame">Username:</label> <input name="runame" id="runame" value="" type="text" /> </p> <p> <label for="rpword">Password:</label> <input name="rpword" id="rpword" type="password" /> </p> <p> <input name="register" value="Register here" type="submit" /> </p> </form> </body> register.php <?php if (isset($_POST['submit'])) { $runame = $_POST['uname']; $rpword = $_POST['pword']; $category = "user"; } $fh = fopen("password.txt","a+"); $data = $runame . ":" . $rpword . ":" . $category . "\n"; fwrite($fh, $data); fclose($fh); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.