低37行的错误是 $r 不是一个有效的MYSQL 结果集 所以 使用 mysql_num_rows函数获取记录数时错误. 错误的原因不在37行 应该检查35行的sql 语句 用 echo $sql 显示最终的SQL语句 看看是否正确
网站设计制作过程拒绝使用模板建站;使用PHP+MYSQL原生开发可交付网站源代码;符合网站优化排名的后台管理系统;网站设计制作、做网站收费合理;免费进行网站备案等企业网站建设一条龙服务.我们是一家持续稳定运营了十余年的成都创新互联网站建设公司。
使用sqlite数据库实现网页登录
客户端网页 login.php
html
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
title微博入口/title
style type="text/css"
.tit {
font-size: 36px;
color: #06C;
font-style: normal;
text-align: center;
}
.lab {
font-size: 16px;
color: #069;
}
.hin {
width:98%;
size:3;
color:#33FF66;
}
/style
script language="javascript"
function checkfrm()
{
if(document.getElementById("txtuser").value=="")
{
window.alert("用户名不能为空!");
return false;
}
if(document.getElementById("txtpwd").value=="")
{
window.alert("密码不能为空!");
return false;
}
document.getElementById("frm1").action="funcexec.php";
//return true;
}
/script
/head
body
form id="frm1" name="frm1" target="_self" method="post"
div
p class="tit"微博入口/p
/div
hr class="hin"/
div
table width="309" border="0"
tr
td width="100" height="20" align="right" class="lab" 用户名:/td
td width="90" align="left"label for="textfield"/label
input name="txtuser" type="text" class="lab" id="txtuser" //td
/tr
tr
td align="right" class="lab" 密nbsp;nbsp;nbsp;码:/td
td align="left"input name="txtpwd" type="password" class="lab" id="txtpwd" //td
/tr
tr class="content"
td colspan="2" align="center"input type="submit" name="btn" id="btn" value="提交" onClick="checkfrm()"//td
/tr
/table/div
/form
/body
/html
php程序判断 func.php
?php
session_start();
$conn=new PDO("sqlite:pic/maindata.db");
$login_sth=$conn-prepare("select count(*) as t from usertab where uid=? and pwd=?");
$article_sth=$conn-prepare("select * from ArticleList");
if(isset($_POST["btn"]))
{
$uid=$_POST["txtuser"];
$pwd=$_POST["txtpwd"];
$login_sth-execute(array($uid,$pwd));
$tot=$login_sth-fetchAll();
if($tot[0][0]0)
{
$_SESSION["userid"]=$uid;
echo("欢迎您,$uid");
echo("a href='index.php'点击进入主页/a");
}
else
echo("登陆失败");
}
else
{
echo("非法操作");
}
?
连接数据库,form 表单
sql语句读取数据库的用户名密码
与对比form表单提交的用户名密码比较
配对成功, 输出一个sesson ,进入登录成功页面