验证码错误

时间:2013-04-21 23:33:29

标签: authentication

这是一个PHP脚本的链接,用于验证授予Uberflip的用户名和密码。建议的代码可以看作here

它应该为验证目的回显一个变量,但似乎给出了以下错误。

  

警告:mysql_result():提供的参数不是有效的MySQL结果   /home/healthev/public_html/journal/verify_subscribers.php中的资源   在第8行用户名/密码组合未找到

以下是我对代码应该是如何理解的。有人可以就我可能出错的地方提供反馈吗?

<?php
mysql_connect("localhost", "database_user_name", "database_password");
mysql_select_db("database_name");

$sql = "SELECT count * FROM 'subscribers' where user_login='" . $_POST['user_login'] . "' AND user_pass='" . $_POST['user_pass'] . "' LIMIT 1";

$result = mysql_query($sql);
$count = mysql_result($result,0); 

if($count==1){
echo "welcome!";
}

else {

echo "username/password combo not found";

}

?>

0 个答案:

没有答案