質問編集履歴
4
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,6 +40,4 @@
|
|
40
40
|
|
41
41
|
XAMPPインストールのOSはwindowsです。
|
42
42
|
|
43
|
-
![イメージ説明](196ce0f21ddaec6426e9983bc51a6e1d.png)
|
44
|
-
|
45
|
-
![イメージ説明](
|
43
|
+
![イメージ説明](26142a33322a54cd1b94e5f762f0ce0f.png)
|
3
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,6 +40,6 @@
|
|
40
40
|
|
41
41
|
XAMPPインストールのOSはwindowsです。
|
42
42
|
|
43
|
-
![イメージ説明](
|
43
|
+
![イメージ説明](196ce0f21ddaec6426e9983bc51a6e1d.png)
|
44
44
|
|
45
45
|
![イメージ説明](edb3ef172177904c6af9abdd2b212c70.png)
|
2
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```
|
8
8
|
|
9
|
-
|
9
|
+
<!DOCTYPE html>
|
10
10
|
|
11
11
|
<html lang="ja">
|
12
12
|
|
@@ -18,29 +18,17 @@
|
|
18
18
|
|
19
19
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20
20
|
|
21
|
-
<title>
|
21
|
+
<title>test</title>
|
22
22
|
|
23
23
|
</head>
|
24
24
|
|
25
25
|
<body>
|
26
26
|
|
27
|
-
<form action="./contactform.php" method="post">
|
28
|
-
|
29
|
-
名前<input type="text" name="fullname" value=""><br>
|
30
|
-
|
31
|
-
email<input type="email" name="email" value=""><br>
|
32
|
-
|
33
|
-
|
27
|
+
<p>test
|
34
|
-
|
35
|
-
<textarea cols="40" rows="8" name="message"></textarea><br>
|
36
|
-
|
37
|
-
<input type="submit" name="confirm" value="確認" />
|
38
28
|
|
39
29
|
|
40
30
|
|
41
|
-
</
|
31
|
+
</p>
|
42
|
-
|
43
|
-
|
44
32
|
|
45
33
|
</body>
|
46
34
|
|
@@ -48,6 +36,10 @@
|
|
48
36
|
|
49
37
|
```
|
50
38
|
|
51
|
-
URLはhttp://localhost
|
39
|
+
URLはhttp://localhost/test.phpです。
|
52
40
|
|
53
41
|
XAMPPインストールのOSはwindowsです。
|
42
|
+
|
43
|
+
![イメージ説明](c7b944b36cfc4096f1545185ccc850bc.png)
|
44
|
+
|
45
|
+
![イメージ説明](edb3ef172177904c6af9abdd2b212c70.png)
|
1
コードの挿入を使用した
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,3 +3,51 @@
|
|
3
3
|
もちろんXAMPPはインストール済みです。
|
4
4
|
|
5
5
|
どうにか表示させることは可能でしょうか?
|
6
|
+
|
7
|
+
```
|
8
|
+
|
9
|
+
<!DOCTYPE html>
|
10
|
+
|
11
|
+
<html lang="ja">
|
12
|
+
|
13
|
+
<head>
|
14
|
+
|
15
|
+
<meta charset="UTF-8">
|
16
|
+
|
17
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
18
|
+
|
19
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20
|
+
|
21
|
+
<title>お問い合わせフォーム</title>
|
22
|
+
|
23
|
+
</head>
|
24
|
+
|
25
|
+
<body>
|
26
|
+
|
27
|
+
<form action="./contactform.php" method="post">
|
28
|
+
|
29
|
+
名前<input type="text" name="fullname" value=""><br>
|
30
|
+
|
31
|
+
email<input type="email" name="email" value=""><br>
|
32
|
+
|
33
|
+
お問い合わせ内容<br>
|
34
|
+
|
35
|
+
<textarea cols="40" rows="8" name="message"></textarea><br>
|
36
|
+
|
37
|
+
<input type="submit" name="confirm" value="確認" />
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
</form>
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
</body>
|
46
|
+
|
47
|
+
</html>
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
URLはhttp://localhost:80/contactform.phpです。
|
52
|
+
|
53
|
+
XAMPPインストールのOSはwindowsです。
|