質問編集履歴

4

誤字編集

2020/02/08 14:56

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -188,7 +188,7 @@
188
188
 
189
189
 
190
190
 
191
- if(!preg_match("/[0-9]+/",$_REQUEshow ST["password"]) ){
191
+ if(!preg_match("/[0-9]+/",$_REQUEST["password"]) ){
192
192
 
193
193
  echo "条件通り入力してください";
194
194
 

3

タグ追加

2020/02/08 14:56

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
File without changes

2

login.blade.php追加

2020/02/08 07:19

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,54 @@
122
122
 
123
123
 
124
124
 
125
+ ###login.blade.php
126
+
127
+ ```
128
+
129
+ ~(省略)~
130
+
131
+ <form action="{{ url('/posts/login_output') }}" method="post">
132
+
133
+
134
+
135
+ {{ csrf_field() }}
136
+
137
+
138
+
139
+ <div class="form-item">
140
+
141
+ <label for="email"></label>
142
+
143
+ <input type="text" name="email" required="required" placeholder="メールアドレス"></input>
144
+
145
+ </div>
146
+
147
+
148
+
149
+ <div class="form-item">
150
+
151
+ <label for="password"></label>
152
+
153
+ <input type="password" name="password" required="required" placeholder="password"></input>
154
+
155
+ </div>
156
+
157
+ <div class="button-panel">
158
+
159
+ <input type="submit" class="button" title="Sign In" value="ログイン"></input>
160
+
161
+ </div>
162
+
163
+ </form>
164
+
165
+
166
+
167
+ ~(省略)~
168
+
169
+ ```
170
+
171
+
172
+
125
173
 
126
174
 
127
175
  ### 試したこと

1

画像追加

2020/02/08 07:08

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
-
5
+ PHPのログイン機能に関してですが
6
6
 
7
7
  executeは実行され$_SESSIONに値が定義されているはずなのにeles判定になってしまうので、if判定に持っていきたいです。
8
8
 
@@ -12,7 +12,7 @@
12
12
 
13
13
 
14
14
 
15
-
15
+ ![イメージ説明](a31ef680150e686b5bc83daee8618382.png)
16
16
 
17
17
 
18
18
 
@@ -44,7 +44,7 @@
44
44
 
45
45
 
46
46
 
47
- $sql->execute([$_REQUEST['email'], $_REQUEST['password']] );
47
+ $sql->execute([$_REQUEST['email'], $_REQUEST['password']] ); //ここまでは実行確認済み(試したこと)
48
48
 
49
49
 
50
50