Need to change smarty file into zend file

两盒软妹~` 提交于 2019-12-02 14:11:31

You can replace the Smarty code with the HTML it generates....

eg.

{{input_text name="login" id="login_name" class="longfield" maxlength="100"}}

becomes

<input type="text" name="login" id="login_name" class="longfield" maxlength="100">

But past that, this question doesn't really make a lot of sense.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!