:::

3-1 index.php

<?php
require_once 'header.php';

$today = date("Y-m-d");
$smarty->assign('now', $today);

/****************** 函數區****************/
//列出所有
function list_all(){
    global $content;
    $content=[
        ['done' => '完成', 'directions'=> "撰寫程式",'end' => '2021/03/13', 'priority'=> "低",'asign'=> "李大頭"],
        ['done' => '未完成', 'directions'=> "開會",'end' => '2021/03/20', 'priority'=> "高",'asign'=> "李大頭、吳大大"],
        ['done' => '未完成', 'directions'=> "社大上課",'end' => '2021/03/21', 'priority'=> "高",'asign'=> "李大頭、吳大大、郭大大"],
    ];
}


/***********************流程判斷************************/
$op=isset($_GET['op'])?$_GET['op']:'no';

//法一
// if($op=='post_form'){
//     $content='新增表單';
// }else {
//     list_all();
// }

// 法二
// switch ($op) {
//     case 'post_form':
//         $content='新增表單';
//         break;

//     default:
//     list_all();
//         break;
// }
// 法三
match($op){
    'post_form'=> $content='新增表單',
    default=>list_all()
};

$smarty->assign('op', $op);

require_once 'footer.php';