我正在尝试为我的流媒体播放器编写一个嵌入式代码吗?

时间:2014-03-17 20:45:55

标签: php html flowplayer

这是代码,它没有显示嵌入部分,为什么不显示?

    <div id="content">
<?php
    $video = $_GET['video'];
    $data_id = $_GET['id'];
    $name = $_GET['name'];
?>
<a href="videos/<?php echo $video; ?>"   
style="display:block;width:100%;height:400px;"   
id="player"></a>
<br>
    </div>
    <div id="content">
    <!--This is where the embed code will display the video-->
    <a href="videos/<?php echo $video; ?>">
    </div>

1 个答案:

答案 0 :(得分:0)

您未正确使用带有<a>标记的PHP代码。来自Strae中的用户this SO question

echo '<a href="' . $folder_path . '">Link text</a>';
     

请注意,您必须使用相对于您的域的路径,如果文件夹路径位于公共htdocs目录之外,则它将无效。