写了一个帐号登录功能。
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form action="login.php" method="get">
<p>用户名:<input name="userName" /></p>
<p>密 码:<input name="password" /></p>
<input type="submit" value="登录">
</form>
</body>
</html>
login.php
<?php
$conn=mysqli_connect("localhost","root","1234","test");
$sql="select * from user where username='$_GET[userName]'and password='$_GET[password]'";
$result=mysqli_query($conn,$sql);
$row=mysqli_fetch_assoc($result);
if ($row==true) {
echo '登录成功';
}else {
echo '登录失败';
}
?>
刚开始写完代码运行的时候错了好几次,这里把容易出错的地方记下来。
1.mysqli_query($link, $query)方法的两个参数都是必需的,这一点和mysql_query不同。
2.sql中参数最好带上单引号,否则如果字符串会报错。