ホームページ php教程 PHP源码 新闻详细页静态化

新闻详细页静态化

May 25, 2016 pm 04:59 PM

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

<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>
ログイン後にコピー


<?php
define("HOST","localhost");
define("USER","justfan");
define("PWD","justfan");
define("DB","justfanDB");
define("PORT","3360");
?>
ログイン後にコピー


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


}
?>
ログイン後にコピー


<?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>";
?>
ログイン後にコピー


このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)