我在发送iframe代码时遇到问题。发送后删除[src]参数。代码和预览如下。
腓:
if(isset($_POST['post'])){
echo $_POST['frame'];
}
HTML:
<form method="post">
<input value="<iframe src='https://jsfiddle.net/'></iframe>" type="text" name="frame">
<button name="post" type="submit">Submit</button>
</form>
答案 0 :(得分:0)
form.php的
<?php
$homepage = file_get_contents('https://www.jsfiddle.net/');
echo $homepage;
?>
show.php
<iframe src="form.php"></iframe>
它不是一个完美的解决方案,但我认为这是最好的解决方案。您赢得的某些网站会遇到您讨论过的问题。