这是代码,它没有显示嵌入部分,为什么不显示?
<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>
答案 0 :(得分:0)
您未正确使用带有<a>
标记的PHP代码。来自Strae中的用户this SO question:
echo '<a href="' . $folder_path . '">Link text</a>';
请注意,您必须使用相对于您的域的路径,如果文件夹路径位于公共htdocs目录之外,则它将无效。