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

निम्नलिखित कोड का उपयोग करके PHP के साथ MySQL में डेटाबेस बनाते समय हम कनेक्शन कहाँ बनाते हैं और हम डेटाबेस कहाँ बनाते हैं?

यहां एक सरल व्याख्या है कि कौन सी रेखाएं क्या करती हैं। यदि आप विशेष रूप से जानना चाहते हैं कि इनमें से अलग-अलग हिस्सों का क्या मतलब है, तो कृपया बताएं कि कौन से हैं ताकि उन्हें आगे आपको समझाया जा सके। या सही लिंक की ओर इशारा किया।

मैंने देखा है कि आप W3Schools का उपयोग कर रहे हैं। उदाहरण के लिए, लगभग सटीक कॉपी और पेस्ट के रूप में। क्या आपने अपनी मशीन पर MySQL स्थापित किया है और एक उपयोगकर्ता नाम और पासवर्ड बनाया है?

<?php
    $servername = "localhost"; // This is the location of your server running MySQL
    $username = "username"; // This is the username for MySQL
    $password = "password"; // This is the password for MySQL

    // Create connection
    $conn = new mysqli($servername, $username, $password); // This is where you create a connection

    // Check connection
    if ($conn->connect_error) { // This checks if the connection happened
        die("Connection failed: " . $conn->connect_error); // and produces an error message if not
    }  // otherwise we move on

    // Create database
    $sql = "CREATE DATABASE myDB"; // This is the SQL query which is sent to the MySQL server
    if ($conn->query($sql) === TRUE) { // When the if statement begins here, it executes the query and test if it returns true
        echo "Database created successfully"; // If it returns true then here is the message is returns
    }
    else {
        echo "Error creating database: " . $conn->error; // Or if there was error with the query this is returned
    }

    $conn->close(); // Close the connection when it is no longer in use
?>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. डिफ़ॉल्ट MySQL जॉइन व्यवहार, आंतरिक या बाहरी क्या है?

  2. मोडल में वर्तमान पंक्ति मान कैसे पास करें?

  3. एक कॉलम के रूप में दो पंक्तियों से डेटा प्रदर्शित करने के लिए MYSQL + PHP

  4. चर arity के साथ एक्टो क्वेरी और कस्टम MySQL फ़ंक्शन

  5. MySql:सबक्वेरी कैसे बनाएं और सभी पंक्तियों को गिनें जहां आईडी दो तालिकाओं में समान है