Home > Article > Backend Development > How to prevent php page from jumping
Methods to prevent php page jumps
1. Header function
The main function of the header() function is to convert the HTTP protocol header (header) Output to browser.
Parameters
void header (string string [,bool replace [,int http_response_code]])
The optional parameter replace indicates whether to replace the previous similar header or add one Headers of the same type, default to replacement.
The second optional parameter http_response_code forces the HTTP corresponding code to the specified value. The Location type header in the header function is a special header call, often used to implement page jumps.
Note
1. There cannot be a space between location and ":", otherwise it will not jump.
2. There cannot be any output before using the header.
2. JavaScript
can be placed anywhere
< ?php $url = " echo "< script language='javascript' type='text/javascript'>"; echo "window.location.href='$url'"; echo "< /script>"; ?>
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of How to prevent php page from jumping. For more information, please follow other related articles on the PHP Chinese website!