#How many ways are there to implement page jump in php?
The ways to implement page jump in php are:
Achieved in PHP script code
<?php header("location:url address") ?>
For example <?php header("location:helloworld.php")?>
The page will jump immediately because the header executes location Redirect
1. Delayed jump (For example, after successful login, there will be a few seconds of waiting time, and then jump to other pages)
Code:
<?php header("Refresh:秒数;url=地址") ?>
For example:
<?php header("Refresh:3;url=helloworld.php")?>
will execute the jump after 3 seconds
<?php sleep(3); header("location:url地址")?>
The sleep() method is called, and the effect is to execute the jump after x seconds.
2. Implement in js script code
1.window.location.href method
<script type="text/javascript"> window.location.href="helloworld.php" </script>
Use js method to implement delayed jump Transfer
<script type="text/javascript"> setTimeout("window.location.href='helloworld.php'",3000);</script>
2.window.location.assign method delayed jump method is the same as above
<script type="text/javascript">window.location.assign("helloworld.php");</script>
3.window.location.replace method (let the new page replace the current page and will not be saved in the history In the record, you cannot use the browser to return to the original page)
<script type="text/javascript"> window.location.replace("helloworld.php");</script>
4.window.open method, three parameters, the first URL address. The second is the way to open a new page (such as new page _blank, _new, self jump _self), and the third is the way to open a new page, including style, location, etc.
<script type="text/javascript"> window.open("index.php",_blank,width=300px);</script>
##3. Use HTML script code to complete the jump
In the tag Execute the codeJust insert this code directly<meta http-equiv="refresh" content="3;url='helloworld.php'">
PHP Video Tutorial"
The above is the detailed content of How many ways are there to implement page jump in php?. For more information, please follow other related articles on the PHP Chinese website!