php注册和登录界⾯的实现案例(推荐)
当初我觉得⼀个⽹站上注册和登录这两个功能很神奇,后来⾃⼰研究⼀下发现其实道理很简单,接下来看⼀下怎么实现的吧。。。。
我在我的电脑上建了⼏个⽂件:
login.html (登录页⾯)
register.html(注册页⾯)
success.html(登录成功跳转页⾯)
return.html(注册成功页⾯)
login.php
register.php
登录界⾯和注册界⾯以及success.html并没有
什么都是些html标记如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>登录界⾯</title>
</head>
<body>
<form method="post" action="login.php">
账号:
<input type="text" name="usernamel"><br/><br/>
密码:
<input type="password" name="passwordl">
<input type="submit" value="登录" name="subl">
<a href="127.0.0.1:8080/register.html">没有账号,注册</a>
</form>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>会员注册</title>
</head>
<body>
<form method="post" action="register.php">
账  ;户:
<input type="text" name="username"><br/><br/>
密  ;码:
<input type="password" name="password"><br/><br/>
密码确认:
<input type="password" name="password2">
<input type="submit" value="注册" name="sub">
</form>
</body>
</html>
return.html是注册成功之后呈现的页⾯,⾥⾯有⼀段js代码是⽤来定时返回登录界⾯的
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>⽆标题⽂档</title>
</head>
<body>
注册成功!<br/>
5秒后返回登录界⾯<br/>
你也可以直接点击回到<a href="127.0.0.1:8080/login.html">登录页⾯</a>
<script type="text/javascript">
setTimeout("ren()",5000);
function ren()
{
window.location="127.0.0.1:8080/login.html";
}
</script>
</body>
</html>
register.php这是与注册页⾯相对应后台页⾯
<?php
$link=mysql_connect("localhost","root","207207");//链接数据库
header("Content-type:text/html;charset=utf-8");
if($link)
{
//echo"链接数据库成功";
$select=mysql_select_db("login",$link);//选择数据库
if($select)
{
//echo"选择数据库成功!";
if(isset($_POST["sub"]))
{
$name=$_POST["username"];
$password1=$_POST["password"];//获取表单数据
$password2=$_POST["password2"];
if($name==""||$password1=="")//判断是否填写
{
echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."请填写完成!"."\"".")".";"."</script>";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/register.html"."\""."</script>";              exit;
}
if($password1==$password2)//确认密码是否正确
{
$str="select count(*) from register where username="."'"."$name"."'";
$result=mysql_query($str,$link);
$pass=mysql_fetch_row($result);
$pa=$pass[0];
if($pa==1)//判断数据库表中是否已存在该⽤户名
{
echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."该⽤户名已被注册"."\"".")".";"."</script>";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/register.html"."\""."</script>";          exit;
}
$sql="insert into register values("."\""."$name"."\"".","."\""."$password1"."\"".")";//将注册信息插⼊数据库表中
//echo"$sql";
mysql_query($sql,$link);
mysql_query('SET NAMES UTF8');
$close=mysql_close($link);
if($close)
{
//echo"数据库关闭";
//echo"注册成功!";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/return.html"."\""."</scr
ipt>";            }
}
else
{
echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."密码不⼀致!"."\"".")".";"."</script>";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/register.html"."\""."</script>";            }
}
}
}
>
login.php登录界⾯对应后台⽂件
<?php
  header("Content-type:text/html;charset=utf-8");
$link=mysql_connect("localhost","root","207207");
if($link)
{
$select=mysql_select_db("login",$link);
if($select)
{
if(isset($_POST["subl"]))
{
$name=$_POST["usernamel"];
$password=$_POST["passwordl"];
if($name==""||$password=="")//判断是否为空
{
echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."请填写正确的信息!"."\"".")".";"."</script>";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/login.html"."\""."</script>";
exit;
}
javascript登录注册界面
$str="select password from register where username="."'"."$name"."'";
mysql_query('SET NAMES UTF8');20      $result=mysql_query($str,$link);
$pass=mysql_fetch_row($result);
$pa=$pass[0];
if($pa==$password)//判断密码与注册时密码是否⼀致
{
echo"登录成功!";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/success.html"."\""."</script>";      }
{
echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."登录失败!"."\"".")".";"."</script>
";
echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."127.0.0.1:8080/login.html"."\""."</script>";
}
}
}
}
>
⾃⼰闲来⽆事做的还有许多要完善的地⽅,欢迎⼤家提问讨论,提供更简便的⽅法!
以上就是⼩编为⼤家带来的php注册和登录界⾯的实现案例(推荐)全部内容了,希望⼤家多多⽀持~

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。