Dup Goto 📝

Simple PHP Redirect Example

PT2/lang/php/http php redirect 12-05 08:02:54
To Pop
6 lines, 11 words, 96 chars Tuesday 2023-12-05 08:02:54
function redirect($newpath) {
  header('Location: '.$newpath, true, 303);
  exit();
}