0

我还是一个新手,我真的很难做到这一点。选中第一个复选框时,如何将嵌入的 youtube 视频回显到页面?请帮忙。谢谢。

<form action="" method="post">
  <label><input type="checkbox" name="check_list[]" value="<?php echo "<iframe width=\"640\" height=\"360\" src=\"http://www.youtube.com/embed/TnxUOdAhAdk\" frameborder=\"0\" allowfullscreen></iframe>"; ?>">Video1</label>
  <label><input type="checkbox" name="check_list[]" value="value 2">Video2</label>
  <label><input type="checkbox" name="check_list[]" value="value 3">Video3</label>
  <input type="submit" />
</form>


<?php
if(!empty($_POST['check_list'])) {
    foreach($_POST['check_list'] as $check) {
        echo $check;
    }
}
?>
4

1 回答 1

0

我建议您使用 javascript/jquery 而不是 php,因为您已经知道您的 youtube 链接。此链接将为您提供有关此的更多信息

无论如何,这里有一个可能对您有所帮助的 php 代码:

<html>
<head>
</head>
<body>
    <form action='index.php' method='post'>
        <input type='checkbox' name='video1' value='true'/>Show Video1
        <br/>
        <input type='checkbox' name='video2' value='true'/>Show Video2
        <br/>
        <input type='checkbox' name='video3' value='true'/>Show Video3
        <br/>
        <input type='submit' value='Show Videos'/>
    </form>

    <?php
    if (isset($_POST['video1'])) {
        echo "<iframe width=\"640\" height=\"360\" src=\"http://www.youtube.com/embed/TnxUOdAhAdk\" frameborder=\"0\" allowfullscreen></iframe>";
        echo "<br/>";
        echo "<br/>";
    }
    if (isset($_POST['video2'])) {
        echo "<iframe width=\"640\" height=\"360\" src=\"http://www.youtube.com/embed/2mKxsC2oi5s\" frameborder=\"0\" allowfullscreen></iframe>";
        echo "<br/>";
        echo "<br/>";
    }
    if (isset($_POST['video3'])) {
        echo "<iframe width=\"640\" height=\"360\" src=\"http://www.youtube.com/embed/tC2fjzWIM-Y\" frameborder=\"0\" allowfullscreen></iframe>";
        echo "<br/>";
        echo "<br/>";
    }
    ?>
</body>
</html>
于 2013-07-02T04:25:50.970 回答