How do I redirect to another page after 5 minutes using PHP?
|
|
If you really want to use PHP for this, here you go:
|
|||
|
|
|
With just HTML:
This will redirect to |
||||
|
|
|
Javascript's setTimeout() is probably what you want. An example would be:
window.location is what you can use in javascript to set the current location of the window. Something to consider, however, is that most browsers do not let you set window.location without some type of user input before hand, such as a click. See here |
|||||||
|
You can't; PHP is executed on the server, not on the client. Once you've output a webpage to a client, you have no control over the page. Event with javascript, you cannot guarantee that a user will redirect, as they can always choose not to allow javascript, or to just leave your page. After retrieving a webpage, you can set a timeout to redirect the user with javascript: See every other answer. |
|||
|
|