smarty内容

来源:互联网 发布:中国护肤品市场 知乎 编辑:程序博客网 时间:2024/05/18 02:03

主要作用是在表单中提交文本使文本随按钮的作用在左边,在中间还是在右边。

 

————————————————————————————————————————————————————————————————————————————

<?php
include("libs/Smarty.class.php");
$s = new Smarty();
$s -> caching = 0;
$s->reInitSmarty("demo/templates","demo/templates_c");//通过自定义方法实现编译目录及界定符的修改
$s->assign("text",$_POST["text"]);
$s->assign("dq",$_POST["dqfs"]);
$s->display("if.tpl");

————————————————————————上为php文件——需要下载smarty模板的smarty.class.php.文件————————

————————————————————————下为html文件——————————————————————————————

<form action="if_smarty.php" method="post">
<input type="text" name="text" />
<input type="radio" value="left" name="dqfs" />left
<input type="radio" value="center" name="dqfs" />center
<input type="radio" value="right" name="dqfs" />right
<br />
<input type="submit" value="提交" />
</form>

————————————————————————————————下为tpl文件————————————————————————————

<body>
<{if $dq=='left'}>
<span style="float:left"><{$text}></span>
<{elseif $dq=='right'}>
<span style="float:right"><{$text}></span>
<{else}>
<center><{$text}></center>
<{/if}>
</body>

原创粉丝点击