/*
author:www.5dkx.com
done: Generate HTML document
date:2009-10-27
*/
require_once ("conn .php");
if($_GET['all'])
{
/*HTML ファイルにファイル名が付くようにデータベース レコードを取得します*/
$sqlquery = "select * from $tbname" ;
$ result = mysql_query($sqlquery,$conn)または die("クエリが失敗しました!");
$fp = fopen("./template/article.html",r); ,filesize( "./template/article.html"));
fclose($fp);
/*ファイルに書き込みます*/
while($row = mysql_fetch_array($result))
{
$fpcontent = str_replace( "{タイトル}",$row['タイトル'],$fpcontent);
$fpcontent = str_replace("{チャタイトル}",$row['タイトル'],$fpcontent); bookcontent}" ,$row['content'],$fpcontent);
$fp = fopen("./html/".$row['id'].".html",w)or die("失敗しましたファイルを開いて書き込みます !");
fwrite($fp,$fpcontent)or die("ファイルの書き込みに失敗しました!");
}
echo "