要連接數(shù)據(jù)庫,可以使用PHP的MySQLi或PDO擴(kuò)展。
使用MySQLi擴(kuò)展的例子:
<?php
// 數(shù)據(jù)庫連接參數(shù)
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_database";
// 創(chuàng)建連接
$conn = new mysqli($servername, $username, $password, $dbname);
// 檢查連接是否成功
if ($conn->connect_error) {
die("連接失敗: " . $conn->connect_error);
}
// 執(zhí)行數(shù)據(jù)庫操作
// ...
// 關(guān)閉連接
$conn->close();
?>
使用PDO擴(kuò)展的例子:
<?php
// 數(shù)據(jù)庫連接參數(shù)
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_database";
try {
// 創(chuàng)建連接
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
// 設(shè)置PDO錯誤模式為異常
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "連接成功";
} catch(PDOException $e) {
echo "連接失敗: " . $e->getMessage();
}
// 執(zhí)行數(shù)據(jù)庫操作
// ...
// 關(guān)閉連接
$conn = null;
?>
在以上代碼中,你需要將your_username
、your_password
和your_database
替換為你的實(shí)際數(shù)據(jù)庫連接參數(shù)。