0

我正在编写一个应该连接到我网站上的 php 文件的程序。在 C# 中,他们输入一个值(密码)。然后将密码发送到网页 ( example.com/example.php?param=<password>)

我知道如何让程序发送密码,但我不知道如何将输入的值与我的 mysql 数据库表中的值进行比较。如果该值在数据库中,我希望它返回 true。

4

3 回答 3

2

sql

    SELECT `password`
    FROM `tableName`
    WHERE `password` = :password

:password 应该是您在数据库中检查的值

于 2012-08-22T20:04:35.997 回答
0
select 1 from your_table where password = 'thepass'
于 2012-08-22T20:05:15.680 回答
0
$result = mysql_query("SELECT * FROM table1 where password = '$password'", $link);
$num_rows = mysql_num_rows($result);
if($num_rows >0)
   return true;
return false;
于 2012-08-23T10:13:02.437 回答