添加文章時生成HTML靜態的頁面
ob_start();
require_once("
/inc/conn php"); $id=$_GET["id"];
$path=$_GET["path"];
$sql="delete from newscontent where newsid=$id";
mysql_query($sql);
if(file_exists("
/newslist/$path")) {
unlink("
/newslist/$path"); $foldername=substr($path
); $folder=fopen("
/newslist/$foldername"); $n=
; while($f=readdir($folder))
{
if($f<>"
" && $f<>" ") {
$n++;
}
}
closedir();
if($n==
) {
rmdir("
/newslist/$foldername"); }
}
header("location:del
php"); ?>
這些代碼比較容易理解
一個完善的文章生成HTML靜態頁面的系統應該是
From:http://tw.wingwit.com/Article/program/PHP/201311/20910.html