tamesi.php
395 Bytes
<?php
header("Content-type: text/html; charset=EUC-JP");
require_once('Smarty/libs/Smarty.class.php');
$o_smarty=new Smarty();
$o_smarty->template_dir='./templates/';
$o_smarty->compile_dir='./templates_c/';
$tamesi[0] = "あああああ";
$tamesi[1] = "いいいいい";
$tamesi[2] = "ううううう";
$o_smarty->assign('tamesi',$tamesi);
$o_smarty->display('tamesi.tpl');
?>