Open In App

Refresh a page using PHP

Use header() function to refresh a web page in PHP. The HTTP functions are those functions which manipulate information sent to the client or browser by the Web server before any other output has been sent. The PHP header() function sends an HTTP header to a client or browser in raw form. Before HTML, XML, JSON or other output has been sent to a browser or client, a raw data is sent with the request (especially HTTP Request) made by the server as header information. HTTP header provides required information about the object sent in the message body more precisely about the request and response.

Syntax:



void header( $header, $replace = TRUE, $http_response_code )
Or
header(string, replace, http_response_code)

Parameters:

Note: This function prevents more than one header to be sent at once. This is a protection against header injection attacks after PHP 4.4 release.



Below example illustrates the use of header() to refresh current page in PHP:

Example: This example uses header() function to refresh a web page in every 3 seconds.




<?php
  
// Demonstrate the use of header() function
// to refresh the current page
   
echo "Welcome to index page</br>";
echo "Page will refresh in every 3 seconds</br></br>";
    
// The function will refresh the page 
// in every 3 second
header("refresh: 3");
    
echo date('H:i:s Y-m-d');
  
exit;
?>

Output:

Example 2: This example uses header() function to redirect web page into another page.




<?php
  
// Demonstrate the use of header() function
// to refresh the current page
   
echo "Welcome to index page</br>";
echo "we will redirect to GeeksForGeeks Official website in 3 second";
    
// The function will redirect to geeksforgeeks official website
header("refresh: 3; url = https://www.geeksforgeeks.org/");
    
exit;
?>

Output:

References: https://www.php.net/manual/en/function.header.php

PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.


Article Tags :