Smarty の問題 --- 変数を HTML
1.php
で表示できません
include_once("libs/Smarty.class.php");
$smarty=new Smarty();
$smarty->template_dir="テンプレート";
$smarty->compile_dir="コンパイル";
$smarty->config_dir="config";
$smarty->cache_dir="キャッシュ";
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
?>
2.php
include ("smarty_include.php");
$name="これはリンゴです!";
$smarty->assign("abc",$name);
$smarty->display("index.html");
?>
インデックス.html