教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php 利用数据库信息生成静态页面实例代码

php 利用数据库信息生成静态页面实例代码

发布时间:2016-10-27   编辑:jiaochengji.com
教程集为您提供php 利用数据库信息生成静态页面实例代码等资源,欢迎您收藏本站,我们将为您提供最新的php 利用数据库信息生成静态页面实例代码资源
这是一款用户自己写的php生成html页面的代码,简单实用比较适合初学者,如果你正在学习php生成静态文件,这一个实例从数据库到php到模板文件都一步步的很清楚哦。
<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy5527')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy5527>

$con=mysql教程_connect("localhost","root","")or die("链接错误!!!");
mysql_select_db("message",$con)or die("数据库链接错误!!!");
mysql_query("set names 'gbk'");
$sql=mysql_query("select * from message");

if($_post[button]){
while($row=mysql_fetch_array($sql)){
$path=$row[0].'.html';
$user=$row[1];
$title=$row[2];
$content=$row[3];
$date=$row[4];

$fp=fopen("moban/html.html","r");
$str=fread($fp,filesize("./moban/html.html"));
$str=str_replace("{user}",$user,$str);
$str=str_replace("{title}",$title,$str);
$str=str_replace("{content}",$content,$str);
$str=str_replace("{date}",$date,$str);
fclose($fp);

$handle=fopen("news/".$path,"w");
fwrite($handle,$str);
fclose($handle);
echo "<script>alert('生成成功!!!');window.location.href='html.php';</script>";
}
}
?>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
  <label>
  <input type="submit" name="button" id="button" value="生成静态页面" />
  </label>
</form>
</body>
</html>

模板文件代码

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy9843')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy9843>

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.jiaochengji.com/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<table width="500">
  <tr>
    <td width="80"><div align="right">名称:</div></td>
    <td width="408"><div align="left">{user}</div></td>
  </tr>
  <tr>
    <td><div align="right">标题:</div></td>
    <td><div align="left">{title}</div></td>
  </tr>
  <tr>
    <td><div align="right">内容:</div></td>
    <td><div align="left">{content}</div></td>
  </tr>
  <tr>
    <td><div align="right">日期:</div></td>
    <td><div align="left">{date}</div></td>
  </tr>
  <tr>
    <td><div align="right"></div></td>
    <td><div align="left"></div></td>
  </tr>
</table>
</body>

删除html代码

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy2061')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy2061>

<?php
$con=mysql_connect("localhost","root","")or die("链接错误!!!");
mysql_select_db("message",$con)or die("数据库链接错误!!!");
mysql_query("set names 'gbk'");
$sql=mysql_query("select * from message");

if($_post[button]){
while($row=mysql_fetch_array($sql)){
$path=$row[0].'.html';

 
  if(@unlink("news/".$path)){
  echo "<script>alert('删除成功!!!');window.location.href='unlink_html.php';</script>";
  }else{
  echo "<script>alert('无内容可以删除!!!');window.location.href='unlink_html.php';</script>";
  }
  }
}
?>
<form id="form1" name="form1" method="post" action="">
  <label>
  <input type="submit" name="button" id="button" value="删除静态页面" />
  </label>
</form>

//数据库结构,用phpmyadmin导入就行了

 表的结构 `message`
--

create table `message` (
  `id` int(4) not null auto_increment,
  `user` varchar(20) not null,
  `title` varchar(100) not null,
  `content` text not null,
  `date` date not null,
  primary key  (`id`)
) engine=myisam  default charset=gbk auto_increment=3 ;

--
-- 导出表中的数据 `message`
--

insert into `message` (`id`, `user`, `title`, `content`, `date`) values
(1, 'dfkk', '数据库信息生成静态页面', 'www.jiaochengji.com', '2010-02-12'),
(2, 'dfkk', '数据库信息生成静态页面', '原理很简单', '2010-02-12');


自己写的,可通过按钮生成静态页面和删除已生成的静态页面。

moban存放模板文件夹(勿删)。

news生成静态页面文件夹(勿删)。


注意事项:phpmyadmin工具导入数据库文件message.sql。

您可能感兴趣的文章:
php页面静态化的小例子
php 静态页生成的二种方法解析
关于php页面静态化原理与例子
PHP生成静态页面
php生成静态页面的详细教程
PHP生成静态页面的方法
PHP实现页面静态化、纯静态化及伪静态化
PHP生成静态文件简单示例
php页面缓存的例子(减经cpu与mysql负担)
PHP生成静态网页的方法

上一篇:中文php.ini下 下一篇:APACHE(3)
[关闭]
~ ~