質問編集履歴
1
エラーをすべて提示し、テキストの出典を明示しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,10 +2,14 @@
|
|
2
2
|
|
3
3
|
nameなどの記入欄が“空”な場合、再入力を求めるメッセージを表示、パスワードなら四文字以下ならするようなプログラムを作成しています。
|
4
4
|
|
5
|
+
Notice: Undefined index: name in C:\xampp\htdocs\post\join\index.php on line 49
|
5
|
-
Notice: Undefined variable: error
|
6
|
+
Notice: Undefined variable: error in C:\xampp\htdocs\post\join\index.php on line 50
|
7
|
+
Notice: Undefined index: email in C:\xampp\htdocs\post\join\index.php on line 56
|
8
|
+
Notice: Undefined variable: error in C:\xampp\htdocs\post\join\index.php on line 57
|
9
|
+
Notice: Undefined variable: error in C:\xampp\htdocs\post\join\index.php on line 64
|
10
|
+
Notice: Undefined variable: error in C:\xampp\htdocs\post\join\index.php on line 67
|
11
|
+
Notice: Undefined variable: error in C:\xampp\htdocs\post\join\index.php on line 73
|
6
12
|
|
7
|
-
|
8
|
-
|
9
13
|
```php
|
10
14
|
<?php
|
11
15
|
session_start();
|
@@ -90,8 +94,9 @@
|
|
90
94
|
初心者の私には解決できませんでした……。
|
91
95
|
|
92
96
|
現在、ハローワークの職業訓練生なのですが、このコロナの影響で学校が閉鎖。
|
93
|
-
閉鎖中の課題として、
|
97
|
+
閉鎖中の課題として、テキストに沿って、このプログラムを書いています。
|
94
98
|
本来であれば、訓練校の講師の方に聴くのですが、閉鎖状態が無期限で続くことになり質問もできず。
|
95
99
|
初歩的な理解が足りていないのかもしれませんが、お力添えを頂ければ幸いです。
|
96
100
|
|
97
|
-
使用ツール Brackets
|
101
|
+
使用ツール Brackets
|
102
|
+
出典 よくわかるPHPの教科書【PHP7対応版】著:たにぐちまこと マイナビブックス P.235~253
|