Jump to content

php password


dezkit

Recommended Posts

how do i make multiples?

 

 

<?php



// Define your username and password

$username = "someuser";

$password = "somepassword";



if ($_POST['txtUsername'] != $username || $_POST['txtPassword'] != $password) {



?>



<h1>Login</h1>



<form name="form" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">

    <p><label for="txtUsername">Username:</label>

    <br /><input type="text" title="Enter your Username" name="txtUsername" /></p>



    <p><label for="txtpassword">Password:</label>

    <br /><input type="password" title="Enter your password" name="txtPassword" /></p>



    <p><input type="submit" name="Submit" value="Login" /></p>



</form>



<?php



}

else {



?>



<p>This is the protected page. Your private content goes here.</p>



<?php



}



?> 

Link to comment
Share on other sites

I suggest not putting them in the script if you have a lot of them, but you could always do:

 

(this assumes usernames are never the same even with different capitalization.  Eg. Corbin = corbin)

 

<?php
$users = array(
     //user => password,
     'corbin' => 'mypass',
     'dezkit' => 'yourpass',
     'someoneelse' => 'hispass',
);

//pretend $user is a value from a form or somewhere submitted by a user.
//also pretend $pass has been submitted.

$luser = strtolower($user);

if(isset($users[$user]) && $users[$user] == $pass) {
     //correct!
}

?>

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.