case "show":
$Model->show($clean['action_id']);
$ApplyModel->where(['action_id' => $clean['action_id']]);
$ApplyModel->index();
break;
那麼便會到正確結果
where()
可以參考:https://campus-xoops.tn.edu.tw/modules/tad_book3/page.php?tbsn=48&tbdsn=1613
case "show":
$Model->show($clean['action_id']);
$ApplyModel->where(['action_id' => $clean['action_id']]);
$ApplyModel->uid_name();
$ApplyModel->disable('action_id');
$ApplyModel->index();
break;
這樣看起來更乾淨
關於uid_name()
可參考:https://campus-xoops.tn.edu.tw/modules/tad_book3/page.php?tbsn=48&tbdsn=1628
關於disable()
可參考:https://campus-xoops.tn.edu.tw/modules/tad_book3/page.php?tbsn=48&tbdsn=1629
亦可修改資料庫欄位註解,將「使用者編號」改為「報名者」
sql/mysql.sql
喔~)