Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

PHP/MYSQL किसी अन्य मानदंड के आधार पर नाम पुनर्प्राप्त करें

सबसे पहले, डेटाबेस से कभी भी पासवर्ड न लें, यह बहुत ही खराब अभ्यास है।

दूसरा, यदि आप केवल एक पंक्ति लौटाते हैं तो आप केवल उपयोगकर्ता को सही स्वीकार करना चाहते हैं।

अंत में bindColumn आप जो खोज रहे हैं वह है।

<?php
function verify_Username_and_Pass($un, $pwd) {
    $query = "SELECT `First Name`, Username
              FROM table
              WHERE Username = :un AND Password = :pwd";
    // Don't limit the query to only one, if there is a chance that you can
    // return multiple rows, either your code is incorrect, bad data in the database, etc...

    $stmt = $this->conn->prepare($query);
    $stmt->bindParam(':un', $un);
    $stmt->bindParam(':pwd', $pwd);
    $stmt->execute();

    // Only assume proper information if you ONLY return 1 row.
    // Something is wrong if you return more than one row...
    if ($stmt->rowCount() == 1) {
        // User exist
        $stmt->bindColumn('First Name', $firstName);
        $stmt->bindColumn('Username', $username);
        // You can now refer to the firstName and username variables.
        return true;
        $stmt->close();
    } else {
        // User doesn't exist
        return false;
        $stmt->close();
    }
}
?>

यह आपके काम आना चाहिए।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. HTML फॉर्म का उपयोग करके MySQL रिकोड को संपादित करना

  2. MacOSX:बूट पर mysql को ऑटोस्टार्ट करें

  3. लोकलहोस्ट से एक ऑनलाइन MySQL डेटाबेस से कनेक्ट करें

  4. SELECT . से MySQL में गणित करें

  5. एक mysql तालिका auto_increment में एक आईडी बनाएं (तथ्य के बाद)