I have the following query initiated by a php script that checks the login and password inputs off a form:
$a_query = "SELECT * FROM ismembercmp WHERE member_name = '$cl_name' AND PASSWORD( pswrd = '$cl_pswrd' )";
The problem is that no matter what $cl_pswrd is, the query returns a match. Anybody know why, or how I can fix this problem? Thanks.