These two days to write a demo, need to use the hint and jump, the main page requirements are not high, feel no need to use AJAX,JS, and so on, so study how to prompt in PHP and jump.
First used the following:
The code is as follows:
echo "<script> alert (' sucess ');p arent.location.href= '/user/index '; </script> ";
Alert inside is a hint of the message, href is prompted to jump after the page.
Then I thought of a redirect () redirection method in the TP framework and went to see it.
However, the TP comes with not a popup window, so he changed:
The code is as follows:
echo "<script> alert (' No loginID '); </script> ";
echo "<meta http-equiv= ' Refresh ' content= ' 0; Url= $url ' > ';
$url is the page to jump, at the same time, this can also control the jump time, the content behind the 0 is 0 seconds after the jump.
PHP pop-up popup and jump to new page to redirect to New page