使用PHP表单嵌入视频

发布于 2024-12-08 22:24:23 字数 426 浏览 0 评论 0原文

我想使用 PHP 表单将视频嵌入到网页上。不知道为什么这不起作用,因为页面源具有嵌入代码,但页面上没有显示任何内容。这是我正在使用的 PHP:

test.php

<html>
<head></head>

<form action="" method="post">
Embed Code: <input type="text" name="embedCode" />
<input type="submit" />
</form>

<?php echo $_POST['embedCode']; ?>

</html>

“embedCode”应该能够处理任何通用视频嵌入代码,例如 或 ,并且不应该特定于 YouTube 或其他任何代码。

I want to use a PHP form to embed a video onto a web page. Not sure why this isn't working as the page source has the embed code but nothing is showing up on the page. Here's the PHP I'm using:

test.php

<html>
<head></head>

<form action="" method="post">
Embed Code: <input type="text" name="embedCode" />
<input type="submit" />
</form>

<?php echo $_POST['embedCode']; ?>

</html>

The 'embedCode' should be able to handle any generic video embedding code such as or and shouldn't be specific to YouTube or anything else.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

错々过的事 2024-12-15 22:24:24

URL 部分必须是嵌入的 src。对于 YouTube 视频,它会是这样的:

<html>
<head></head>

<form action="" method="post">
URL: <input type="text" name="url" />
<input type="submit" />
</form>

<iframe width="560" height="315" src="<?php echo $_POST['url']; ?>" frameborder="0" allowfullscreen></iframe>

</html>

应该可以。不过,这个简单的解决方案存在一些问题:

  • 您试图回显大多数情况下不存在的内容(当加载页面而没有发布表单时)->首先检查表单是否已发布,
  • 对于发布的链接没有输入验证。您可能想确保它是在嵌入之前发布的有效(youtube?)链接

干杯

The URL part must be the src of the embed. For a youtube video it would be like this:

<html>
<head></head>

<form action="" method="post">
URL: <input type="text" name="url" />
<input type="submit" />
</form>

<iframe width="560" height="315" src="<?php echo $_POST['url']; ?>" frameborder="0" allowfullscreen></iframe>

</html>

That should work. There are a few problems with this simple solution though:

  • you're trying to echo something that doesn't exist in most cases (when the page is loaded without the form being posted) -> check if the the form has been posted first
  • there is no input validation on what links are posted. You might want to make sure it's a valid (youtube?) link that's being posted before embedding it

Cheers

書生途 2024-12-15 22:24:24

缺少一个引用

<?php echo $_POST['url]; ?>

在您的代码中,应该

<?php echo $_POST['url']; ?>

,并且对于嵌入视频,如果您只是回显网址,则它不会嵌入。
您必须对任何类型的视频使用嵌入代码,例如:用于 flv/Flash Stream 的 Flash Player、用于 wmv/asf 流的 WMP 等

您必须使用嵌入代码并在 url 所在的位置回显 url在嵌入播放器中

In your code there is a quote missing

<?php echo $_POST['url]; ?>

should be

<?php echo $_POST['url']; ?>

And for embeding a video if you just echo the url, it is not gonna embed.
You have to use the embed code for whatever kind of video it is for eg: Flash Player for flv/Flash Stream,WMP for wmv/asf streams,etc

You have to use the embed code and echo the url in the place were url is in the embed player

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文