Toggle main menu visibility
下載輕鬆架
套件下載
使用手冊
發問討論
網站地圖
:::
登入
登入
帳號
密碼
登入
:::
所有書籍
「中心PHP7研習範例」目錄
MarkDown
4-7 signup.sql
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
3. 第二天範例
3-1 index.php
3-2 config.php
3-3 function.php
3-4 signup.sql
3-5 templates/index.tpl
3-6 templates/side_tools.tpl
3-7 templates/side_login.tpl
3-8 templates/regist_form.tpl
4. 第三天範例
4-1 index.php
4-2 header.php
4-3 footer.php
4-4 config.php
4-5 function.php
4-6 admin.php
4-7 signup.sql
4-8 templates/index.tpl
4-9 templates/head.tpl
4-10 templates/regist_form.tpl
4-11 templates/side_login.tpl
4-12 templates/side_tools.tpl
4-13 templates/alert_error.tpl
4-14 templates/list_actions.tpl
4-15 templates/sweet-alert.tpl
4-16 templates/show_action.tpl
4-17 templates/side_signups.tpl
4-9 templates/head.tpl
中心PHP7研習範例 ========== ``` {include file="head.tpl"}
{$page_title}
{if $error} {include file="alert_error.tpl"} {/if} {if $op=="regist"} {include file="regist_form.tpl"} {elseif $op =="list_actions"} {include file="list_actions.tpl"} {elseif $op =="show_action"} {include file="show_action.tpl"} {else} {$content} {/if}
嗨!{$name}
{if $group} {include file="side_tools.tpl"} {else} {include file="side_login.tpl"} {/if} {if $op=="show_action"} {include file="side_signups.tpl"} {/if}
```