使用PHP表单嵌入视频
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
URL 部分必须是嵌入的 src。对于 YouTube 视频,它会是这样的:
应该可以。不过,这个简单的解决方案存在一些问题:
干杯
The URL part must be the src of the embed. For a youtube video it would be like this:
That should work. There are a few problems with this simple solution though:
Cheers
缺少一个引用
在您的代码中,应该
,并且对于嵌入视频,如果您只是回显网址,则它不会嵌入。
您必须对任何类型的视频使用嵌入代码,例如:用于 flv/Flash Stream 的 Flash Player、用于 wmv/asf 流的 WMP 等
您必须使用嵌入代码并在 url 所在的位置回显 url在嵌入播放器中
In your code there is a quote missing
should be
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