質問編集履歴
2
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
1
文の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
HTMLでホームページを作る場合
|
2
|
+
<input type="file" name="input_file0" >のようにプログラムをうちファイルを選択するとこまでは実装できました。
|
3
|
+
やりたいことの流れ
|
4
|
+
選択したファイルをサーバーに送信
|
5
|
+
サーバーに送信したファイルをダウンロードしたい
|
6
|
+
ダウンロードしたファイルを任意で作ったフォルダにいれたい
|
7
|
+
|
8
|
+
自分で作成したHTML
|
9
|
+
<!DOCTYPE html>
|
10
|
+
<html lang="ja">
|
11
|
+
<head>
|
12
|
+
<meta charset="UTF-8">
|
13
|
+
<title>tesuto(仮)</title>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<form>
|
2
|
-
<input type="file" name="input_file0" >
|
17
|
+
<input type="file" name="input_file0" ><br>
|
3
|
-
|
18
|
+
</form>
|
4
|
-
選択したファイルを自分のパソコン上のファイルの中にアップロードしたいのですが
|
5
|
-
|
19
|
+
</body>
|
20
|
+
</html>
|