gpt4 book ai didi

php - 在网页上显示加载时执行的 PHP 文件的输出/回显

转载 作者:太空宇宙 更新时间:2023-11-03 10:32:22 25 4
gpt4 key购买 nike

我正在尝试创建我的第一个网站,但在这种情况下我一无所知。所以我有一个带表的 MySQL 数据库。我有一个名为 database.php 的 php 文件,它从数据库中读取并回显查询的所有行:

<?php
$servername = "xxxxxxxxxx.hosting-data.io";
$username = "xxxxxxxx";
$password = "xxxxxxx";
$dbname = "xxxxxxx";

// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}

$sql = "SELECT ID, Name, Beschreibung, Datum, Uhrzeit FROM Termine";
$result = mysqli_query($conn, $sql);

if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo "ID: " . $row["ID"]. " - Name: " . $row["Name"]. " - Beschreibung: " . $row["Beschreibung"]. " - Datum: " . $row["Datum"]. " - Uhrzeit: " . $row["Uhrzeit"]."<br>";
}
} else {
echo "0 results";
}

mysqli_close($conn);
?>

现在在我的 index.php 上,我想在调用/加载网页时执行此 php 代码并打印所有行(数据条目)。但我不知道如何获取网页正文中打印的 php 文件的回显(=数据条目)。我阅读了有关 AJAX 和使用 js 脚本的信息,但我仍然无法理解。

感谢您的帮助。

最佳答案

选项 1:将您的 PHP 代码放在 HTML 正文中。

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
echo 'Hello World';
// ...
?>
</body>
</html>

选项 2:创建一个包含上述代码的单独 PHP 文件,并将其包含/要求到您的正文中。

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
include_once('your_php_file.php');
?>
</body>
</html>

选项 3:使用 AJAX 调用调用您的 PHP 文件(例如使用 jQuery load() )。

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="aDiv"></div>
<script> $( "#aDiv" ).load('your_php_file.php', function() { console.log('Loaded'); });</script>
</body>
</html>

关于php - 在网页上显示加载时执行的 PHP 文件的输出/回显,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55680178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com