Home > Article > Backend Development > How to pop up prompt box in php
The method of popping up a dialog box in php is as follows. Generally, a dialog box prompt needs to pop up after submitting the information, and then the dialog box can be automatically closed. There are following centralized methods for popping up a dialog box. In fact, they are all It uses the alert() method in javascript. Closing the current page after the prompt ends can also be achieved using javascript's Window.self.close().
The exact statement is:
echo " <script> window.self.close(); </script> ";
1. PHP pops up the dialog box
//弹出对话框 alert(\"你好\");"; ?> //关闭当前页 echo " <script> window.self.close(); </script> "; 或者 alert(\"你好\");"; ?>
2. If you need PHP to pop up the dialog box and return to the original page, you can write like this
<?php echo "<script language=\"JavaScript\">\r\n"; echo " alert(\"你好\");\r\n"; echo " history.back();\r\n"; echo "</script>"; exit; ?> 或者 <?php print "<script language=\"JavaScript\">\r\n"; print " alert(\"你好\");\r\n"; print " history.back();\r\n"; print "</script>"; exit; ?>
3. If you need PHP to pop up a dialog box and replace the original page with a new page (replace the current history record), the original page can be written like this
<?php echo "<script language=\"JavaScript\">\r\n"; echo " alert(\"你好\");\r\n"; echo " location.replace(\"http://www.asm32.net/\");\r\n"; // 自己修改网址 echo "</script>"; exit; ?> 或者 <?php print "<script language=\"JavaScript\">\r\n"; print " alert(\"你好\");\r\n"; print " location.replace(\"http://www.asm32.net/\");\r\n"; // 自己修改网址 print "</script>"; exit; ?>
The above is the detailed content of How to pop up prompt box in php. For more information, please follow other related articles on the PHP Chinese website!