LoginSignup
14
12

More than 5 years have passed since last update.

「フォーム再送信の確認」が表示された時の対策方法

Last updated at Posted at 2017-02-27

SESSIONを開始しているところで、以下のように書いく

session_start();
header('Expires:-1');
header('Cache-Control:');
header('Pragma:');

header()でセミコロンの右に何も書かないと、PHPは何も送出しない。
session_start()のHTTPヘッダー送出を上書きし、結果的に何も送出しない。

参照

14
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
12