gpt4 book ai didi

php - 从数据库中回显嵌入的 YouTube 视频

转载 作者:行者123 更新时间:2023-11-29 11:56:00 24 4
gpt4 key购买 nike

我正在尝试使用我的数据库回显 YouTube 嵌入视频。但我不知道我的错误在哪里..

Config.php 文件:

$servername = "localhost";
$username = "root";
$password = "";
$db = "dbname";

// Create connection
$conn = mysqli_connect($servername, $username, $password, $db);

// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}

在这里,我试图呼应 YouTube 视频:

include ("/includes/config.php");
$query = "SELECT * FROM table_name";
$result = mysqli_query($link, $query);
while ($row = mysqli_fetch_array($result)) {
echo "<iframe width='560' height='315' src='https://www.youtube.com/embed/".$row['video']."' frameborder='0' allowfullscreen></iframe>";
}
mysqli_close($link);

在 echo 部分,我正在 echo $row['video'],video 是每个视频都有的 YouTube 视频的代码。

但是还是不行,有人可以帮我吗?

最佳答案

1.检查您的浏览器源代码是否正确打印代码。

2.检查您在 https://www.youtube.com/embed/

之后打印的视频代码是否仅类似于 (h1h4hdj6) >

关于php - 从数据库中回显嵌入的 YouTube 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33188803/

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