質問編集履歴
1
一部の編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -15,8 +15,9 @@
|
|
15
15
|
get.php
|
16
16
|
```php
|
17
17
|
if(isset($_POST["token"])){
|
18
|
-
if($_POST["token"]===session_id()){
|
18
|
+
if($_POST["token"]===session_id()){
|
19
|
+
//処理
|
19
|
-
}else{exit("tokenerror");}
|
20
|
+
}else{exit("tokenerror");}
|
20
21
|
}else{exit("posterror");}
|
21
22
|
```
|
22
23
|
そして、get.phpのif($_POST["token"]===session_id()){の前に
|