11.
完成新增功能(30分鐘)
一、新增流程
- 在流程中加入一組設定:
case "insert":
insert();
header("location:../index.php?eng={$_POST['eng']}");
break;
- 當執行完儲存後,進行轉向,轉到前台index.php,並利用get方式傳遞eng的值,以便搜尋該英文字是否寫入正確。
二、完成寫入函數:
- 利用insert語法,完成寫入函數:
//寫入英文
function insert(){
global $xoopsDB;
$eng=$_POST['eng'];
$cht=$_POST['cht'];
$sql="insert into `".$xoopsDB->prefix('oxford')."` (`eng` , `cht`) values('{$eng}' , '{$cht}')";
$xoopsDB->queryF($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
}