要使用PHP的MySQLi函數(shù)連接數(shù)據(jù)庫,請按照以下步驟操作:
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_password
和your_database_name
替換為實(shí)際的數(shù)據(jù)庫用戶名、密碼和名稱。如果連接成功,代碼將輸出"連接成功",否則將輸出錯誤信息。