sql >> Databáze >  >> RDS >> Mysql

Při vytváření databáze v MySQL s PHP pomocí následujícího kódu, kde vytvoříme připojení a kde vytvoříme databázi?

Zde je jednoduché vysvětlení toho, které linky co dělají. Pokud byste chtěli vědět, co konkrétně jednotlivé části znamenají, řekněte prosím které, aby vám mohly být dále vysvětleny. Nebo správné odkazy, na které odkazují.

Všiml jsem si, že používáte W3Schools například jako téměř přesnou kopii a vložení. Nainstalovali jste na svůj počítač MySQL a vytvořili uživatelské jméno a heslo?

<?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. Hodnoty Oracle ROWID

  2. MOD_REWRITE HELP!

  3. Zkrátit všechny tabulky (většina z nich má omezení). Jak je dočasně vypustit

  4. Zkontrolujte, zda existuje řádek s danými hodnotami