PHP correspondence Search, seek guidance

Source: Internet
Author: User
PHP correspondence lookup, seek guidance
Want to retrieve the password by user name and question, where is the wrong way to write it?

(The user name in the known database is not duplicated)



$username = $_post[' username ');
$fquestion = $_post[' fquestion ');
$answer = $_post[' answer ');


Include (' conn.php ');
mysql_query ("Set character set ' GBK '");
mysql_query ("Set names ' GBK '");

$sql = "Select *from user where Username= '". $username. "' and Answer= '". $answer. "' ";
$result =mysql_query ($sql);
$num =mysql_num_rows ($result);

if ($num >0)
{

echo "Your password is [' Password ']";

echo "Click here to log in";

}

?>

------Solution--------------------
*from user where Username= ' ". $username." ' and Answer= ' ". $answer." ' ";


* There's a space missing behind
------Solution--------------------
You're just
$result =mysql_query ($sql); Execute Query
$num =mysql_num_rows ($result); Read result set record Count
if ($num >0)//judgment has been found
{
echo "Your password is [' Password ']";

did not read the results of the query
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.