質問編集履歴
3
syyusei
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,10 +47,6 @@
|
|
47
47
|
header("location: /test.php");}
|
48
48
|
|
49
49
|
?>
|
50
|
-
|
51
|
-
```
|
52
|
-
|
53
|
-
```html
|
54
50
|
|
55
51
|
<html>
|
56
52
|
|
2
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
作りたいものはpass.phpでパスワードを入力すると特別ページtest.phpに飛び、間違えるとmiss.phpにエラーメッセージが出る仕組みです。今のところ正しいパスワードを入れると問題なく動きます。
|
8
8
|
|
9
|
-
問題点は、どう間違えてもelseifの一番上の文字がechoされることです。やりたいのは、空欄ではmissと出、半角英数字、4字以上でそれぞれのエラーメッセージを個別に出したいです。なぜ一番目しかechoされないのでしょうか?
|
9
|
+
問題点は、どう間違えてもelseifの一番上の文字がechoされることです。やりたいのは、空欄ではmissと出、半角英数字以外、4字以上でそれぞれのエラーメッセージを個別に出したいです。なぜ一番目しかechoされないのでしょうか?
|
10
10
|
|
11
11
|
|
12
12
|
|
1
s
test
CHANGED
File without changes
|
test
CHANGED
@@ -90,9 +90,9 @@
|
|
90
90
|
|
91
91
|
echo"<p class=\"align-center\">miss! Try again.</p><br>",
|
92
92
|
|
93
|
-
|
93
|
+
"<ul class=\"actions special\">
|
94
94
|
|
95
|
-
|
95
|
+
<li><a id=\"btn_home\" href=\"javascript:history.back()\" class=\"button\">Back</a></li></ul>";
|
96
96
|
|
97
97
|
}
|
98
98
|
|