Jump to content

basic login


drsimcox

Recommended Posts

im currently leaning php, and im stuck with this basic code for a very basic login system. I was hoping someone could spot the mistake i have made...

 

**********

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form action="passwords.php" method="POST" >
<h1>login</h1>
<p>
Username:  <input type="text" size="4" maxlength="20" name="username" /><br />
Password:  <input type="text" size="4" maxlength="20" name="password" />
</p>
<p>
<input type="SUBMIT" value="Login" />

</p>
</form>
</body>
</html>

*******

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<?php
$username = $_POST['username'] ;
$password = $_POST['password'] ;

    if ($username == "Henry" && password == "dobie690") {
        echo "access allowed";
    }
    elseif ($username == "Sheryl" && password == "28_toads") {
        echo "access allowed";
    }
    else {
        echo "warning: declined!";
    }

?>
</body>
</html>

***********

 

The first page sends form information to 'passwords.php' then responds with either "access allowed" or "warning: declined!". like i said this is very basic but im just struggling a little bit...

 

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.