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
https://forums.phpfreaks.com/topic/213542-php-simple-login-help/
Share on other sites

So, till file saved it's worked correctly.

 

When user trying to login, you just read that file using file_get_contents()

 

And search a pattern string which compare the user's input. You can find many string search functions in PHP.net

 

I hope it would be helpful for you.

Archived

This topic is now archived and is closed to further replies.

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