Jump to content

PHP Simple Login, help.


wolfwood77

Recommended Posts

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);

?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.