提交表单后清空iframe

时间:2017-09-06 20:18:08

标签: php html

我现在正在学习.php并想尝试一些基本形式。当我创建用于从用户(youtube)获取嵌入链接的表单时,但在提交表单后,iframe内容为空。如果有人知道原因,请指导我:)

<FORM method = 'post' action = 'a.php'>
<input type="text" name = "embed" id= "embed"></input>
<br><input type = 'submit' value = 'Go'>
</form>

<?
echo $_REQUEST['embed'];
?>

1 个答案:

答案 0 :(得分:1)

请尝试使用此代码,它对我有用。我把所有内容放在一个index.php文件中。

<?php echo $_REQUEST['embed']; ?>

<form method='post'>
<input type="text" name="embed" id="embed"></input>
<br><input type='submit' value='Go'>
</form>