PHPファイル名: dome.php
コードをコピーします コードは次のとおりです:
$string = 1;
ob_start();
@readfile("templets/list.html");
$text = ob_get_flush();
$myfile = fopen("list.html","w");
$text = str_replace ("{カウント}",$string,$text);
fwrite($myfile,$text);
ob_clean();
?>
テンプレートファイル名:templets/list.html
コードをコピーします コードは次のとおりです:
<頭>
ボディ>
ユーザー: {counent_user} タイトル: {counent_title} リリース時間: {counent_lastdate} |
コンテンツ: {counent_content} |