Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 Smarty 3.1 与我的网站一起使用 JUST Index.php。
现在,我将如何添加并制作联系页面?
1) 制作contact.php 并制作一个全新的模板?
2) 让它 index.php?page=contact ??
3)制作contact.php并使用模板并将变量传递给模板,使其显示联系人信息......?
2) 使其成为 index.php?page=contact
更好的方法是使用集中式系统。您可以获取页面值并加载适当的模板。
例如:
switch ($page) { case "home": $template="home.tpl"; break; case "contect": $template="contact.tpl"; break; default: $template="404.tpl"; break; } $smarty->display($template);