1
如何在smarty中顯示包含html模板的變量?如何在smarty中顯示包含html模板的變量?
$smarty = new my_smarty();
$page_content = "<p>{$my_content}</p>";
$smary->assign("my_content","whatever...");
$smarty->display($page_content); // how to render $page_content ???