Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active May 17, 2023 14:10
Show Gist options
  • Save vielhuber/cec99625a76c7a3fffa1 to your computer and use it in GitHub Desktop.
Save vielhuber/cec99625a76c7a3fffa1 to your computer and use it in GitHub Desktop.
PRG-Pattern post get redirect #php
// without any response
header("Location: " . $_SERVER['REQUEST_URI']);
die();
// with a response using GET
header("Location: " . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH).'?response=foo');
die();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment