您的位置:首页 > 编程语言 > PHP开发

简易php博客(3)_后台登陆

2016-06-15 22:28 543 查看
login.php

<?php
include("../connect.php");
echo <<<HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>简易blog后台测试</title>
<link rel=stylesheet type="text/css" href="../css/css.css">
</head>
<body>
HTML;

session_start();
$_SESSION['mng_name']="";
$_SESSION['mng_tag']="";
if(!empty($_POST['login'])){
$login=$_POST['login'];
if ($login=="登 陆"){
$username=$_POST['username'];
$password=$_POST['password'];
if ($username!="" and $password!=""){
$query="select * from manage where usr='$username'";
@$query = mysql_query($query)or die("查询数据表失败");
$user=mysql_fetch_array($query);
if ($user['pwd']==$password){
$_SESSION['mng_name']=$user['usr'];
$_SESSION['mng_tag']=1;
header("location:./index.php");
exit;
}else{
echo"登陆失败";
}
}
}
}

echo <<<HTML
<div style="width: 240px; margin:18% auto;">
<form method=POST name="tijiao" action="#">
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#111111" width="240" height="126" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-collapse: collapse;alignment: center">
<tr>
<td width="238" colspan="2" height="50" bgcolor="#A8A3AD">
<p align="center"><b color="#FFFFFF">简易blog后台管理系统</b></td>
</tr>
<tr>
<td width="64" height="28" bgcolor="#E3E1E6">
<p align="center">账号:</td>
<td height="28" bgcolor="#E3E1E6" width="173">
<input type="text" name="username" size="20" class="login"></td>
</tr>
<tr>
<td width="64" height="28" bgcolor="#E3E1E6">
<p align="center">口令:</td>
<td height="28" bgcolor="#E3E1E6" width="173">
<input type="password" name="password" size="20" class="login"></td>
</tr>
<tr>
<td width="238" height="36" bgcolor="#E3E1E6" colspan="2">
<p align="center">
<input type="submit" value="登 陆" name="login">    
<input type="reset" value="取 消" name="cancel">
</td>
</tr>
<tr>
<td width="238" colspan="2" height="20" bgcolor="#A8A3AD" align="center"> <a href="../index.php">>>>index<<<</index></a></td>
</tr>
</table>
</form>
</div>
HTML;
?>效果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: