Dup Ver Goto 📝

Simple PHP Redirect Example

PT2/lang/php/http php redirect does not exist
To
6 lines, 11 words, 96 chars Page 'RedirectExample' does not exist.
function redirect($newpath) {
  header('Location: '.$newpath, true, 303);
  exit();
}