用php发布iframe

时间:2017-01-08 22:08:59

标签: php post iframe

我在发送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>

显示输出: enter image description here

1 个答案:

答案 0 :(得分:0)

form.php的

<?php
$homepage = file_get_contents('https://www.jsfiddle.net/');
echo $homepage;
?>

show.php

<iframe src="form.php"></iframe>

它不是一个完美的解决方案,但我认为这是最好的解决方案。您赢得的某些网站会遇到您讨论过的问题。