溫馨提示×

php mysqli函數(shù)如何連接數(shù)據(jù)庫

PHP
小樊
82
2024-09-26 22:01:27
欄目: 云計算

要使用PHP的MySQLi函數(shù)連接數(shù)據(jù)庫,請按照以下步驟操作:

  1. 創(chuàng)建一個MySQL數(shù)據(jù)庫及用戶,并設(shè)置密碼。
  2. 確保已在PHP中啟用了MySQLi擴(kuò)展。
  3. 使用mysqli_connect()函數(shù)連接到數(shù)據(jù)庫。

下面是一個簡單的示例代碼,展示了如何使用PHP的MySQLi函數(shù)連接到MySQL數(shù)據(jù)庫:

<?php
// 設(shè)置數(shù)據(jù)庫連接參數(shù)
$servername = "localhost"; // 數(shù)據(jù)庫服務(wù)器地址(通常是localhost)
$username = "your_username"; // 數(shù)據(jù)庫用戶名
$password = "your_password"; // 數(shù)據(jù)庫密碼
$dbname = "your_database_name"; // 要連接的數(shù)據(jù)庫名稱

// 創(chuàng)建連接
$conn = mysqli_connect($servername, $username, $password, $dbname);

// 檢查連接是否成功
if (!$conn) {
    die("連接失敗: " . mysqli_connect_error());
} else {
    echo "連接成功";
}

// 關(guān)閉連接
mysqli_close($conn);
?>

請將your_username、your_passwordyour_database_name替換為實(shí)際的數(shù)據(jù)庫用戶名、密碼和名稱。如果連接成功,代碼將輸出"連接成功",否則將輸出錯誤信息。

0