Toggle main menu visibility
下載輕鬆架
套件下載
使用手冊
發問討論
網站地圖
:::
登入
登入
帳號
密碼
登入
:::
所有書籍
「安順PHP研習範例」目錄
MarkDown
2-2 config.php
1. 第一天
1-1 index.php
1-2 templates/index.tpl
2. 第二天
2-1 index.php
2-2 config.php
2-3 templates/index.tpl
2-4 templates/side_login.tpl
2-5 templates/head.tpl
2-6 tempaltes/side_tools.tpl
3. 第三天
3-1 index.php
3-2 function.php
3-3 config.php
3-4 templates/side_tools.php
3-5 templates/index.tpl
3-6 templates/side_login.php
3-7 templates/regist_form.tpl
4. 第四天
4-1 index.php
4-2 config.php
4-3 function.php
4-4 admin.php
4-5 header.php
4-6 footer.php
4-7 templates/alert_error.tpl
4-8 templates/index.tpl
4-9 templates/head.tpl
4-10 templates/side_tools.tpl
4-11 templates/side_login.tpl
4-12 templates/show_action.tpl
4-13 templates/list_action.tpl
4-14 templates/sweet-alert.tpl
4-15 templates/list_signups.tpl
2-4 templates/side_login.tpl
安順PHP研習範例 ========= ``` {include file='head.tpl'}
{$page_title}
主內容
{$content}
嗨!{$my_name}
{if $group=="admin"} {*管理員工具列*} {include file='side_tools.tpl'} {elseif $group=="user"} {*使用者工具列*} {include file='side_tools.tpl'} {else} {include file='side_login.tpl'} {/if}
```