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:
- $header: It holds the header string. There are two types of header calls. The first header starts with string “HTTP/”, which is used to figure out the HTTP status code to send. The second case of header is the “Location:”. It is mandatory parameter.
- $replace: It is optional parameter. It denotes the header should replace previous or add a second header. The default value is True (will replace). If $replace value is False then it force multiple headers of the same type.
- $http_response_code: It is an optional parameter. It forces the HTTP response code to the specified value (PHP 4.3 and higher).
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 exit; ?> |
Output:
References: https://www.php.net/manual/en/function.header.php
Recommended Posts:
- How to refresh a page using jQuery?
- How to display search result of another page on same page using ajax in JSP?
- What’s the best way to reload / refresh an iframe?
- CSS | @page rule
- How to get the title of an HTML page ?
- Download web page using Java
- Page Object Model (POM)
- CSS page-break-before Property
- CSS | page-break-after Property
- How to add innerHTML to print page?
- HTML Course | First Web Page | Printing Hello World
- How to disable zoom on a mobile web page using CSS?
- How to change opacity while scrolling the page?
- CSS | page-break-inside Property
- How to jump to top of browser page using jQuery?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



