使用php嵌入视频

时间:2015-01-10 17:08:42

标签: php video embed

我正在尝试从csv创建变量并显示它。该值是嵌入的YouTube视频。

暂时忽略csv部分。

当我使用此代码时,无法找到视频。如果我只是在html中使用嵌入代码它按预期工作,我从YouTube得到了它。当我直接使用html时,该类很好,并且删除该类并没有解决此页面上的问题。使用php变量显示视频嵌入我需要做什么?

<?php

//prints the 4th row, second column.
$test ="http://www.youtube-nocookie.com/embed/a57OYN-gTVo";
?>

<!DOCTYPE html>
<html >
<head>
<LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen>
</head>

<body>

<h1>basketball</h1>
<h2>Ball</h2>
<br>

<div class="videoSpot">
<h2></h2>
<iframe width="500" height="360" src="<? echo $test; ?>" frameborder="0" allowfullscreen>       </iframe></div>

<div class="videoSpot">
<h2></h2>
<iframe width="500" height="360" src="<? echo $test; ?>" frameborder="0" allowfullscreen>    </iframe></div>

<div class="videoSpot">
<h2></h2>
<iframe width="500" height="360" src='<? echo $test; ?>' frameborder="0" allowfullscreen></iframe></div>

</body>
</html>

0 个答案:

没有答案