LoginSignup
0
1

More than 5 years have passed since last update.

【フォーム再送信の確認】が表示された時の対策について

Posted at

セッションを開始しているところでこのように書く。

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

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

0
1
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
0
1