頁尾版權資料管理

編輯表單

複製前面完成的後台管理頁,貼過來修改

<p class="t cent botli">頁尾版權資料管理</p>
<form method="post" action="api.php?do=<?=$_GET["redo"]?>">
	頁尾版權資料<input type="text" name="<?=$_GET["redo"]?>" value="<?=$bottom?>">
	<input type="submit">
</form>
1
2
3
4
5

寫入API

在 api.php 加入處理表單的程式碼

case "bottom":
	upd($_POST, "bottom", 0);
	lo("admin.php?redo=bottom");
	break;
1
2
3
4