Ask Your Question
0

What is the process of creating a redirect in PHP?

asked 2022-02-03 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-09-29 22:00:00 +0000

david gravatar image

Redirects can be created in PHP using the header() function. This function sends a HTTP header to the client to redirect the user to a different page. The syntax of the function is as follows:

header('Location: http://www.example.com/newpage.php');

This code sends a header to the browser telling it to redirect to the specified URL. The browser then follows the redirect and loads the new page.

It is important to note that the header() function must be called before any HTML code is sent to the browser, or else an error will occur.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-02-03 11:00:00 +0000

Seen: 16 times

Last updated: Sep 29 '21