HTML,iframe用PHP?

时间:2011-03-24 08:30:12

标签: php html iframe include ssi

我知道 include()代码,但我希望更改iframe。 在HTML中,它将类似于

 <A href="mickeymouse.html" target="NAME_OF_THE_IFRAME">Mickey</A>  

我如何在PHP中执行相同操作?

对于静态HTML,最好使用include()或get_content()吗?你经常使用什么?

我正在尝试做的是一个更加搜索引擎优化和更简单的网站。

2 个答案:

答案 0 :(得分:0)

您必须将文件从html重命名为php,然后更改以下行

<? $myIframeURL = "whateveryouwant" ?>   //Here you can define the url you want to load 
<A href="mickeymouse.html" target="<?= $myIframeURL  ?>">Mickey</A>  

答案 1 :(得分:0)

<?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>