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