头部尾部引入怎么做的

来源:4-4 页面层次的架构搭建

慕仙3167342

2016-07-14 14:58

<!-- #BeginLibraryItem "/include_test/header.dwt" --><!-- EenLibraryItem -->

为什么写那句代码就引入了模板,原理是什么,用到了什么,过程是怎样的

写回答 关注

2回答

  • I_am_xin
    2016-12-17 12:49:57
    smarty框架中
    
    <{include file="header.tpl" title="使用Smarty模板完成网站开发"}>
    <table border="1" align="center" width="90%" cellpadding="3" cellspacing="0">
    	<caption><h1> <{$tableName}></h1></caption>
    	<tr bgcolor="#cccccc">
    		<th>编号</th><th>姓名</th><th>性别</th><th>年龄</th><th>电子邮件</th>
    	</tr>
       <{foreach $users as $k=>$v }>
        <tr>
            <{foreach $v as $key=>$value}>
            <{if $key =="sex"}>
            	<{if $value == "男"}>
            		<td bgColor="red">男</td>
            	<{elseif $value == "女"}>
            		<td bgColor="green"> 女 </td>
            	<{else}>
            		<td bgColor="blue"> 未知 </td>
            	<{/if}>
            <{else}>
            	<td> <{$value}> </td>
            <{/if}>
            <{/foreach}>
        </tr>
        <{/foreach}>
    </table>
    <center>共查找到<b> <{$rowNum}> </b>条记录</center>
    <{include file="footer.tpl" author="开发者"}>


  • Tony1994
    2016-12-05 15:36:26

    这块是php的内容,不同后端语言引入模版的方式不一样

电商网站前端架构

整个项目组织、开发、发布等流程,教你如何创建一个电子商务网站

101313 学习 · 202 问题

查看课程

相似问题