在 PHP 中,include()
函數(shù)用于將一個(gè)文件的內(nèi)容包含到另一個(gè)文件中。如果你想要包含數(shù)據(jù)庫(kù)內(nèi)容,首先需要連接到數(shù)據(jù)庫(kù),執(zhí)行查詢,獲取結(jié)果,然后將結(jié)果輸出到頁(yè)面上。以下是一個(gè)簡(jiǎn)單的示例,展示了如何使用 PHP 和 MySQLi 擴(kuò)展包含數(shù)據(jù)庫(kù)內(nèi)容:
config.php
的文件,用于存儲(chǔ)數(shù)據(jù)庫(kù)連接信息:<?php
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_dbname";
// 創(chuàng)建連接
$conn = new mysqli($servername, $username, $password, $dbname);
// 檢查連接
if ($conn->connect_error) {
die("連接失敗: " . $conn->connect_error);
}
?>
fetch_data.php
的文件,用于連接到數(shù)據(jù)庫(kù),執(zhí)行查詢并輸出結(jié)果:<?php
// 包含數(shù)據(jù)庫(kù)配置文件
require_once 'config.php';
// 創(chuàng)建查詢
$sql = "SELECT id, name, email FROM users";
$result = $conn->query($sql);
// 檢查查詢結(jié)果
if ($result->num_rows > 0) {
// 輸出每行數(shù)據(jù)
while($row = $result->fetch_assoc()) {
echo "id: " . $row["id"]. " - Name: " . $row["name"]. " - Email: " . $row["email"]. "<br>";
}
} else {
echo "0 結(jié)果";
}
// 關(guān)閉連接
$conn->close();
?>
在這個(gè)示例中,我們首先包含了 config.php
文件,該文件包含了數(shù)據(jù)庫(kù)連接信息。然后,我們?cè)?fetch_data.php
文件中連接到數(shù)據(jù)庫(kù),執(zhí)行查詢并輸出結(jié)果。