<?php include "config.php"; $command=$_POST["command"]; if ($command==null) { echo(" <html> <title>整合新增查詢更新刪除範例</title> <form method='post' action=$PHP_SELF> //此處顯示第一個網頁 </form> </html> "); }
if ($command=="新增") { //新增程式碼擺這裡 }
if ($command=="查詢") { //查詢程式碼擺這裡 }
if ($command=="更新") { //更新程式碼擺這裡 }
if ($command=="刪除") { //刪除程式碼擺這裡並丟出更新刪除按鈕 }
?>