如果值在mysql中,则返回true

时间:2012-08-22 19:58:23

标签: php mysql

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

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

3 个答案:

答案 0 :(得分:2)

SQL

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

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

答案 1 :(得分:0)

select 1 from your_table where password = 'thepass'

答案 2 :(得分: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;