欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php 静态页面中显示动态内容

程序员文章站 2022-06-03 13:26:31
最近在做一个站点时,需要生成静态页面,但是生成的静态页面中有些内容是需要动态获取的,怎不能每天生成一下吧。。 最后上网查了一下,再加上个要总结,呵。。。。终于实现了。。发出...
最近在做一个站点时,需要生成静态页面,但是生成的静态页面中有些内容是需要动态获取的,怎不能每天生成一下吧。。
最后上网查了一下,再加上个要总结,呵。。。。终于实现了。。发出来,大家一起研究。。呵。。。
<span class="style1">应用一</span>:文章计数,获取动态内容
计数页:count.php
复制代码 代码如下:

<?php
require_once './global.php';
$db->query("update ".$tablepre."teacher set views=views+1 where id='".$_get['id']."'");
$hello=$db->fetch_one_array("select * from ".$tablepre."teacher where id='".$_get['id']."'");
$hcount=$hello['views'];
?>
document.write("<?=$hcount?>");

静态页面mk.html中加入即可
<script src="count.php?id=<?=$id?>"></script>
切记:页面路径,生成静态后计数文件路径会变。。
<span class="style1">应用二</span>:获取此页面中一些动态信息,例如相关文章之类
同样,静态页面中的链接还是此种形式
复制代码 代码如下:

<script src="read.php?cid=<?=$a['code']?>"></script>

read.php里内容如下:
复制代码 代码如下:

<?php
$cid=$_get['cid'];
?>
document.write("<table cellspacing=1 cellpadding=8 width=100% bgcolor=#c4cbce border=0>");
document.write("<tr bgcolor=#ffffff align=center>");
document.write("<td width=33% align=center bgcolor=#ffffff>订单号</td>");
document.write("<td>年级科目</td>");
document.write("<td>时间</td>");
document.write("</tr>");
<?php
$succquery=$db->query("select * from ".$tablepre."test where cid='$cid'");
while($succ=$db->fetch_array($succquery))
{
?>
document.write("<tr bgcolor=#ffffff align=center>");
document.write("<td><?=$succ['id']?></td>");
document.write("<td><?=$succ['city']?></td>");
document.write("<td><?=date('y-m-d h:i:s',$succ['addtime'])?></td>");
document.write("</tr>");
<?php
}
?>
document.write("</table>");
document.write("<br>");

还有另外一种方法:
static side:
复制代码 代码如下:

<html><body>
<script>
function fill_in(html)
{
document.getelementbyid('into').innerhtml = html;
}
</script>
<div id="into"></div>
<iframe name="dynamic" src="dynamic.html" style="width:0px;height:0px:frame-border:none;display:none;"></iframe>
</body></html>
dynamic page:
<html><body>
<div id="content">fill in any thing that is dynamic without document.write()</div>
<script>
var html = document.getelementbyid('content').innerhtml;
parent.fill_in(html);
document.getelementbyid('content').innerhtml = "";
</script>
</body></html>