- 194 名前:1 [02/04/02 09:55 ID:IYI5YDp3]
- >>190
うーん、それはSmartyというよりPHPでゴリゴリ書くしかないですね。 ---- main.html ---- <html> <body> {$contents} </body> </html> ------------------- というテンプレートに ---- index.php ---- require("Smarty.class.php"); $smarty = new Smarty; $fp = fopen("index.txt","r"); $smarty->assign("contents", fread($fp, filesize("index.txt")); fclose ($fp); $smarty->display("main.html"); ------------------- こんなかんじなのかな? すいません、>>190さんの言いたいことがよくわかってないかもです。 >>188 ぜひUPして下さい。日本語のSmartyサイトが1件も検索に引っ掛かってこない現状 は寂しいです。
|

|