0
我需要將.php文件的輸出添加到iframe中。這可能嗎?將php添加到iframe中
if($_GET['someAction']=="somePage"){
require_once("somePage.php");
}
如何將上述代碼的輸出轉儲到iframe中?
我需要將.php文件的輸出添加到iframe中。這可能嗎?將php添加到iframe中
if($_GET['someAction']=="somePage"){
require_once("somePage.php");
}
如何將上述代碼的輸出轉儲到iframe中?
如何將上述代碼的輸出轉儲到iframe中?
將它放在元素中,而不是通過require
要求它在服務器端。
if($_GET['someAction']=="somePage") {
echo '<iframe src="somePage.php"></iframe>';
}
你可以直接插入此代碼到您的HTML:
<?php if($_GET['someAction']=="somePage"){ ?>
<iframe src="somePage.php"></iframe>
<?php } ?>
我不是在PHP好。它在iframe中顯示「somePage.php」的一些錯誤。我只需要添加該文件一次。所以我添加了「require_once()」,它對我很有用。現在在iframe中需要它。如果你能理解,請告訴我一些事情 – sura2k
你爲什麼想在iframe中做這件事?沒有更多的上下文無法幫助你。 – meagar
我想加載幾頁。所以我想使用iframe。 – sura2k