Home > php教程 > PHP源码 > 新闻详细页静态化

新闻详细页静态化

PHP中文网
Release: 2016-05-25 16:59:19
Original
1174 people have browsed it

发布新闻,实现新闻页面静态化,真静态

<html>
<head>添加新闻</head>

<body>
 <form method="post"action="doadd.php"> 
 新闻标题:<input type="text"name="title"size="100"><br>
 新闻内容:<textarea name="content"cols="100"rows="25"></textarea><br>
 <input type="submit"name="提交">
</form>
</body>
</html>
Copy after login


<?php
define("HOST","localhost");
define("USER","justfan");
define("PWD","justfan");
define("DB","justfanDB");
define("PORT","3360");
?>
Copy after login


<?php
class DB
{
private $host = &#39;&#39;;
private $uname = &#39;&#39;;
private $pwd = &#39;&#39;;
private $port = &#39;&#39;;
private $db = &#39;&#39;;
 public static $instance = null; 

private function __construct($host , $uname , $pwd , $port , $db)
{
$this->host = $host;
$this->uname = $uname;
$this->port = $port;
$this->pwd = $pwd;
$this->db = $db;

mysql_connect($host,$uname,$pwd);
mysql_select_db($this->db);
}

public static function Instance()
{
if(Db::$instance==null){
include &#39;config.php&#39;;
return Db::$instance = new DB(HOST, USER, PWD, PORT, DB);
}
else
return Db::$instance;
}

public function query($sql)
{
mysql_query("SET NAMES UTF8");
$query = mysql_query($sql) or die($sql."error");
if(!$query) return false;
else return $query;
}


public function getAll($sql)
{
$query = $this->query($sql);
if($query)
{
while($ret = mysql_fetch_assoc($query))
{
$result[] = $ret;
}
}
return $result;
}


}
?>
Copy after login


<?php
include &#39;DB_class.php&#39;;
$db = DB::Instance();

$title=$_POST["title"];
$content=$_POST["content"];

$num = uniqid();
$houzui=".html";
$filename=date(&#39;Ymd&#39;).&#39;/&#39;.$num.$houzui;

$sql="insert into news(title,content,path) values (&#39;{$title}&#39; , &#39;{$content}&#39; , &#39;{$filename}&#39;)";
$query = $db->query($sql);

$fp=fopen("model.htm","r");
$str=fread($fp,filesize("model.htm"));
$str=str_replace("{title}",$title,$str);
$str=str_replace("{content}",$content,$str);
fclose($fp);

$dir = dirname($filename);
if(!is_dir($dir)){
mkdir($dir);
}

$handle=fopen($filename,"w");
fwrite($handle,$str);
fclose($handle);



echo"<a href={$filename} target=_blank>查看刚才添加的新闻</a>";
echo"<a href=&#39;add.php&#39;>添加新闻</a>";
?>
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template