我知道include()代码,但我希望 iframe 改变。在 HTML 中,它类似于
<A href="mickeymouse.html" target="NAME_OF_THE_IFRAME">Mickey</A>
我怎样才能在 PHP 中做同样的事情?
同样对于静态 HTML,使用 include() 还是 get_content() 更好?你通常用什么?
我想做的是一个对 SEO 更友好、更简单的网站。
<?php
$varri = "http://stackoverflow.com/questions/5416527/html-iframes-with-php";
?>
<iframe src=<?php print $varri; ?> scrolling="auto" width=100% height=100% frameborder="0"> </iframe>
您必须将文件从 html 重命名为 php,然后将您的行更改为以下行
<? $myIframeURL = "whateveryouwant" ?> //Here you can define the url you want to load
<A href="mickeymouse.html" target="<?= $myIframeURL ?>">Mickey</A>