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
https://forums.phpfreaks.com/topic/205416-basic-login/
Share on other sites

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.