振鐸四十週年影音儲存:修訂版本之間的差異
出自六年制學程
(→檔案上傳機制) |
(→檔案上傳機制) |
||
第 11 行: | 第 11 行: | ||
##檔案目的地資料夾:要從網頁「根目錄」下新增資料夾,讓上傳的檔案有地方去 | ##檔案目的地資料夾:要從網頁「根目錄」下新增資料夾,讓上傳的檔案有地方去 | ||
#主要程式碼: | #主要程式碼: | ||
− | ##html:<pre></pre> | + | ##html:<pre><html><body> |
− | ##php: | + | |
+ | <form method="post" enctype="multipart/form-data" action="upload.php"> | ||
+ | <input type="file" name="my_file"> | ||
+ | <input type="submit" value="Upload"> | ||
+ | </form> | ||
+ | |||
+ | </body></html></pre> | ||
+ | ##php:<pre></pre> |
2022年6月10日 (五) 15:10的修訂版本
檔案上傳機制
- 恩濡參考以下資料來源製作「檔案上傳試用網頁」:
- 主要程式碼參考網頁:PHP上傳檔案,透過 PHP $_FILES 陣列輕鬆上傳檔案
- 主要程式碼參考網頁:PHP 上傳檔案程式設計教學,$_FILES 多檔案用法
- 主要html程式碼:WebAPIs:檔案上傳 Input File, File Upload, and FileList
- 補充資料:【經驗】php-檔案上傳-步驟教學
- 需準備的檔案:
- 前台上傳介面:html檔案
- 後台工作程式:php檔案
- 檔案目的地資料夾:要從網頁「根目錄」下新增資料夾,讓上傳的檔案有地方去
- 主要程式碼:
- html:
<html><body>
- html:
<form method="post" enctype="multipart/form-data" action="upload.php">
<input type="file" name="my_file"> <input type="submit" value="Upload">
</form>
</body></html>- php: