1

Possible Duplicate: How to make a redirect in PHP?


Hi! How do i forward a page on the best way? Should I use the header-funct. or should i use HTML (meta-tags) to refresh? I hope some experts could give me some advice at this point. Thanks!

Btw, the forwarding is made inside an if-statement if that could be to some problem?

Community
  • 1
  • 1
phpmasterNOT
  • 13
  • 1
  • 1
  • 3
  • Possible duplicate of [How to make a redirect in PHP?](https://stackoverflow.com/questions/768431/how-to-make-a-redirect-in-php) – Cœur Jul 10 '18 at 12:51

2 Answers2

6

If you want to redirect the user to an URL, you can use the header function to send a Location HTTP header :

header('Location: http://www.example.com/new-url.php');
die;

(In theory, you should use an absolute URL that includes the domain name -- but most browsers accept a non-absolute URL)

You can use this wherever you want in your script, even inside a if-block, of course.

The only thing is, as you are setting an HTTP-header : you must not have sent any kind of output before (not even a white space at the end of an included file).

Pascal MARTIN
  • 395,085
  • 80
  • 655
  • 663
0

You can use JavaScript.

echo "<script>location.replace(\"$url\");</script>";

Take a look at https://www.w3schools.com/howto/howto_js_redirect_webpage.asp .

markoj
  • 150
  • 10