CMSware-kTemplate-php
来自站长百科
导航:返回上一页
说明
<php>...</php>
例子1:一个简单的用户界面
<php> <if test="$Member.UserName !=''"> 欢迎你:[$Member.UserName] - 您的 积分 [$Member.Credit] 点 / 头衔: [$Member.GroName] - [$Member.GroID]<span class="smalltxt">[<a href=" [$BBS_Logout]">注销</a>] <else> <table width="100%" border="0"> <form method="post" action="[$BBS_Login]"> <tr> <td>用户:</td> <td><input type="text" name="[$BBS_Username]" size="10" maxlength="40" tabindex="1"></td> <td>密码:</td> <td><input type="password" name="[$BBS_pass]" size="10" tabindex="2"></td> <td><input type="submit" name="loginsubmit" value="会员登录"></td> <td> <input type="hidden" name="cookietime" value="2592000"> <span class="smalltxt"><a href="[$BBS_Register]">立即注册</a> <a href=" [$BBS_Lostpass]">取回密码</a></span></td> </tr> </form> </table> </if> </php>
例子2:模版中包含php的简单应用
<title> <?php echo "hello world!"; ?> </title>