zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

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

<?php
require_once"./global.php";
$DB->query("update".$tablepre."teachersetviews=views+1whereid="".$_GET["id"].""");
$hello=$DB->fetch_one_array("select*from".$tablepre."teacherwhereid="".$_GET["id"].""");
$hcount=$hello["views"];
?>
document.write("<?=$hcount?>");

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

<scriptsrc="read.php?cid=<?=$A["code"]?>"></script>

read.php里内容如下:
复制代码代码如下:
<?php
$cid=$_GET["cid"];
?>
document.write("<TABLEcellSpacing=1cellPadding=8width=100%bgColor=#c4cbceborder=0>");
document.write("<TRbgColor=#ffffffalign=center>");
document.write("<TDwidth=33%align=centerbgcolor=#ffffff>订单号</TD>");
document.write("<TD>年级科目</TD>");
document.write("<TD>时间</TD>");
document.write("</TR>");
<?php
$succquery=$DB->query("select*from".$tablepre."testwherecid="$cid"");
while($succ=$DB->fetch_array($succquery))
{
?>
document.write("<TRbgColor=#ffffffalign=center>");
document.write("<TD><?=$succ["id"]?></TD>");
document.write("<TD><?=$succ["city"]?></TD>");
document.write("<TD><?=date("Y-m-dH:i:s",$succ["addtime"])?></TD>");
document.write("</TR>");
<?php
}
?>
document.write("</TABLE>");
document.write("<br>");

还有另外一种方法:
staticside:
复制代码代码如下:
<html><body>
<script>
functionfill_in(html)
{
document.getElementById("into").innerHTML=html;
}
</script>
<divid="into"></div>
<iframename="dynamic"src="dynamic.html"style="width:0px;height:0px:frame-border:none;display:none;"></iframe>
</body></html>
dynamicpage:
<html><body>
<divid="content">fillinanythingthatisdynamicwithoutdocument.write()</div>
<script>
varhtml=document.getElementById("content").innerHTML;
parent.fill_in(html);
document.getElementById("content").innerHTML="";
</script>
</body></html>