我们如何在 iframe 上返回结果,页面填充在 iframe 容器内。
<form action="what.php" method="POST">
<center><input type="text" name="search"/><br/>
<input type="submit" value="Search google" name="submit">
</center></form>
<?php if (isset($_POST['submit']))
{
$a = '<iframe width="500" height="400" src="http://www.google.com/search?q='.$_POST['search'].'"></iframe>';
echo htmlentities($a);
echo $a;
}
?>
过载:自动不起作用,通过我的 iframe 上的谷歌搜索可以显示我感到幸运的结果 :) 如果我问一个愚蠢的问题,请原谅我的无知