Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Ao criar um banco de dados em MySQL com PHP usando o seguinte código onde fazemos a conexão e onde fazemos o banco de dados?


Aqui está uma explicação simples de quais linhas fazem o quê. Se você gostaria de saber especificamente o que significam as partes individuais destes, por favor, diga quais para que possam ser melhor explicadas a você. Ou os links corretos apontados.

Percebo que você está usando o W3Schools exemplo, como uma cópia e colagem quase exatas. Você instalou o MySQL em sua máquina e criou um nome de usuário e senha?
<?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
?>