PHP考核问卷,checkpwd.php

require 'lib/phpass/PasswordHash.php';

if (!isset($_SESSION)) {

session_start();

}

if (!function_exists("GetSQLValueString")) {

function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")

{

if (PHP_VERSION < 6) {

$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {

case "text":

$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";

break;

case "long":

case "int":

$theValue = ($theValue != "") ? intval($theValue) : "NULL";

break;

case "double":

$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";

break;

case "date":

$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";

break;

case "defined":

$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;

break;

}

return $theValue;

}

}

$colname_rsUser1 = 'admin888';

$loginUsername="-1";

if (isset($_POST['username'])) {

$colname_rsUser1 = $_POST['username'];

$loginUsername=$colname_rsUser1;

}

//echo $colname_rsUser1;

$colname_rsUser2= '123456';

if (isset($_POST['password'])) {

$colname_rsUser2 = $_POST['password'];

}

//echo $colname_rsUser2;

mysql_select_db($database_connjxkh, $connjxkh);

//$query_rsUser = sprintf("SELECT * FROM UserInfo WHERE UserName = %s and UserPwd=%s", GetSQLValueString($colname_rsUser1, "text"),GetSQLValueString($colname_rsUser2, "text"));

$query_rsUser = sprintf("SELECT * FROM UserInfo WHERE Account = %s ", GetSQLValueString($colname_rsUser1, "text"));

//echo $query_rsUser."
";

$rsUser = mysql_query($query_rsUser, $connjxkh) or die(mysql_error());

$row_rsUser= mysql_fetch_assoc($rsUser);

$count=mysql_num_rows($rsUser);

if($count>0){

$dbpassword=$row_rsUser["Passwd"];

//echo $dbpassword."
";

$t_hasher = new PasswordHash(8, FALSE);

$hash = $t_hasher->HashPassword($colname_rsUser2);

//echo 'Hash: ' . $hash . "
";

$check = $t_hasher->CheckPassword($colname_rsUser2, $dbpassword);

if ($check){

$loginStrGroup = "";

if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}

$json_obj= json_encode(array('code'=>200));

echo $json_obj;

mysql_free_result($rsUser);

}

else{

$json_obj= json_encode(array('code'=>'400'));

echo $json_obj;

mysql_free_result($rsUser);

}

}

else{

echo $json_obj= json_encode(array('code'=>'404'));

exit();

}

?>

一键复制

编辑

Web IDE

原始数据

按行查看

历史

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值