質問編集履歴

1

コードの修正

2018/05/08 14:06

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -10,46 +10,50 @@
10
10
 
11
11
  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
12
12
 
13
- "http://www.w3.org/TR/html4/DTD/loose.dtd">
13
+ "http://www.w3.org/TR/html4/loose.dtd">
14
14
 
15
15
 
16
16
 
17
- <html>
17
+ <html>
18
18
 
19
- <head>
19
+ <head>
20
20
 
21
- <meta http-equiv="Content-Type"
21
+ <meta http-equiv="Content-Type"
22
22
 
23
- content="text/html; charset=UTF-8" />
23
+ content="text/html; charset=UTF-8">
24
24
 
25
25
 
26
26
 
27
- <title>アップロード</title>
27
+ <title>アップロード</title>
28
28
 
29
29
 
30
30
 
31
- </head>
31
+ </head>
32
32
 
33
- <body>
33
+ <body>
34
-
35
- <h1>ファイルのアップロード</h1>
36
-
37
- <form action="sample" enctype="multipart/form-data" method="post">
38
34
 
39
35
 
40
36
 
41
- ファイル名を入力:<input type="text" size="20" name="fname" />
37
+ <h1>ファイルのアップロード</h1>
42
38
 
43
39
 
44
40
 
45
- <input type="submit" value="送信"></input>
41
+ <form action="sample6" enctype="multipart/form-data" method="post">
46
42
 
47
43
 
48
44
 
49
- </form>
45
+ 入力 :<input type="file" size="20" name="fname">
50
46
 
51
- </body>
52
47
 
48
+
49
+ <input type="submit" value="送信">
50
+
51
+
52
+
53
+ </form>
54
+
55
+ </body>
56
+
53
- </html>
57
+ </html>
54
58
 
55
59
  ```