不管查沒(méi)查到值,返回值都是0 數(shù)據(jù)庫(kù)明明有這個(gè)字段的值返回值還是0 求解決
1 回答

人到中年有點(diǎn)甜
TA貢獻(xiàn)1895條經(jīng)驗(yàn) 獲得超7個(gè)贊
試下這代碼 把參數(shù)改成你自己的
<?php
include("conn1.php");
$count=mysql_query("select count(*) from uu where u_user='$_POST[uuser]' AND u_pass='$_POST[upass]'"); //獲得記錄總數(shù)
$rs=mysql_fetch_array($count);
$totalNumber=$rs[0];
if ($totalNumber>0) {
session_start();
$_SESSION["user1"]=$_POST[uuser];
echo "登陸成功!!3s后跳轉(zhuǎn)主頁(yè)";
header("Refresh:3;url=index.php");
}else{
echo "登陸失敗??!賬號(hào)密碼錯(cuò)誤或賬號(hào)不存在、3s后返回登陸頁(yè)";
header("Refresh:3;url=denglu.php");
}
?>
添加回答
舉報(bào)
0/150
提交
取消