PHP
Redirect Page PHP After 5 Seconds Examples (1 line code)
You can use redirection in PHP to redirect to a page. Redirect page examples provided. Read on to find out more on how to do this.
Examples to Redirect Page using PHP
Example 1: Redirect Page to another website without any delay using PHP
<?php header( 'Location: http://www.theextremewebdesigns.com' ) ; ?>
Example 2: Redirect Page to a specific page of a website using PHP
If you would rather redirect to a specific page of a website, use the following code:
<?php header( 'Location: http://www.theextremewebdesigns.com/services.php' ) ; ?>
Example 3: Redirect Page after 5 seconds using PHP
If you would like to redirect to a website after a delay of 5 seconds, use the following code:
<?php
header("Refresh: 10; url=http://www.theextremewebdesigns.com/");
?>That’s it!
Do you know of any other ways to redirect page using php? Please feel free to share by commenting below.