In most cases, js is used for page jumps. In fact, it does not need to be used. The following is an introduction to the specific implementation. Friends who need it can refer to
When page jumps
Generally use js
window.location.href
Of course you can also use
The code is as follows :
<html> <head> <meta http-equiv="refresh" content="0;url=http://www.baidu.com"> <title></title> </head> <body> </body> </html>
The value of content is the jump delay
The above is the detailed content of How to implement page jump in php without using js. For more information, please follow other related articles on the PHP Chinese website!