01-php项目之雇员管理系统1-实现登录功能

login.php

<html>

<head>
<meta content="text/html;charset=utf-8" http-equiv="content-type">
</head>
<h1>管理员登录系统</h1>
<form action="loginProcess.php" method="post">
<table>
	<tr>
		<td>用户id</td>
		<td><input type="text" name="id" /></td>
	</tr>
	<tr>
		<td>密  码</td>
		<td><input type="password" name="password" /></td>
	</tr>
	<tr>
		<td><input type="submit" value="用户登录" /></td>
		<td><input type="reset" value="重新填写" /></td>
	</tr>
</table>
</form>
<?php 
if(!empty($_GET['errno'])){
	 $errno=$_GET['errno'];
	 if($errno==1){
	 	echo "<font color='red' size='3'>你的用户名或密码错误</font>";
	 }
}
   
?>
</html>

empManage.php(登录成功页面)

<?php
header ( "Content-type:text/html;charset=utf-8" );
echo "登录成功!...";
echo "<br/><a href='login.php'>返回重新登录</a>";
?>


loginProcess.php(登录处理页面)

<?php
//接受用户的数据
//1.id
$id = $_POST ['id'];
//2.密码
$password = $_POST ['password'];

//简单验证
if ($id == "100" && $password == "123") {
	//合法
	header ( "Location:empManage.php" );
	//如果要跳转,最好加上exit
	exit ();
} else {
	//不合法
	header ( "Location:login.php?errno=1" );
	exit ();
}
?>



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

会编程的阿强

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值