php第四篇

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
简单粗暴的身份验证
<?php
$name=trim($_POST['name']);
$passwd=trim($_POST['password']);
if(!$name||!$passwd)
{
echo "用户名或密码为空,请重新登录!";
exit;
?>
<html>
<head>
<title>Login In</title>
</head>
<body>
<h1>Login In</h1>
<form action="shenfenyanzheng.php" method="post">
<table border="0">
<tr>
<td>用户名</td>
<td><input type="text" name="name" maxlength="13" size="13"></td>
</tr>
<tr>
<td>密码</td>
<td><input type="text" name="password" maxlength="13" size="13"></td>
</tr>
<tr>
<td colspan="18"><input type="submit" value="登录"></td>
</tr>
</table>
</form>
</body>
</html>
<?php
}
else
{
@$db=new mysqli('localhost','root','','users');
if(mysqli_connect_errno())
{
echo "无法与服务器连接";
exit;
}
$db->select_db('users');
$query="select count(*) from users where name = '".$name."' and passwd = '".$passwd."'";
$result=$db->query($query);
if(!$result)
{
echo "无法进行数据库操作";
exit;
}
$row=mysqli_fetch_row($result);
$count=$row[0];
if($count>0)
{
echo "成功登录";
}
else
{
echo "登录失败";
}
}
?>

试了好久,发现如果用户名密码包含中文就不行,不知道错在哪。。。