PHP MySQL 建立資料庫

2022-09-08 23:42:28 字數 1356 閱讀 5299

使用 mysqli 和 pdo 建立 mysql 資料庫

create database 語句用於在 mysql 中建立資料庫。

在下面的例項中,建立了乙個名為 "mydb" 的資料庫:

例項 (mysqli - 物件導向)

<?php

$servername = "localhost";

$username = "username";

$password = "password";

// 建立連線

$conn = new mysqli($servername, $username, $password);

// 檢測連線

if ($conn->connect_error)

// 建立資料庫

$sql = "create database mydb";

if ($conn->query($sql) === true) else

$conn->close();

?>

note 注意: 當你建立乙個新的資料庫時,你必須為 mysqli 物件指定三個引數 (servername, username 和 password)。

tip: 如果你使用其他埠(預設為3306),為資料庫引數新增空字串,如: new mysqli("localhost", "username", "password", "", port)

例項 (mysqli procedural)

<?php

$servername = "localhost";

$username = "username";

$password = "password";

// 建立連線

$conn = mysqli_connect($servername, $username, $password);

// 檢測連線

if (!$conn)

// 建立資料庫

$sql = "create database mydb";

if bjrongjinhuiyin.com(mysqli_query($conn, $sql)) else

mysqli_close($conn);

?>

注意: 以下使用 pdo 例項建立資料庫 "mydbpdo":

例項使用 pdo:

<?php

$servername = "localhost";

$username = "username";

$password = "password";

try

catch(pdoexception $e)

$conn = null;

?>

php mysql建立資料庫 表

其實現在一般的資料庫都有可視面板,可視面板也是支援直接在上面視覺化建立,視覺化的資料庫建立很簡單,只需要在上面點選新增資料庫按鈕,然後輸入你的資料庫名就可以了 建立表亦如此,不過現在下面主要是關於 建立的 1 建立資料庫 create database database name 2 建立表 sql...

PHP Mysql資料庫連線

1,date default timezone set prc 獲取北京時區 header content type text html charset utf 8 編碼 define db host localhost 資料庫位址,一般為localhost define db user root ...

PHP MySQL 連線資料庫

免費的 mysql 資料庫通常是通過 php 來使用的。在您能夠訪問並處理資料庫中的資料之前,您必須建立到達資料庫的連線。在 php 中,這個任務通過 mysql connect 函式完成。mysql connect servername,username,password 引數 描述servern...