loginout.php 453 B

12345678910111213141516
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>号卡管理系统</title>
  6. </head>
  7. <body>
  8. <?php
  9. session_start();
  10. session_unset();
  11. session_destroy();
  12. echo "<script>alert('已退出系统');window.location.href='login.php'</script>";
  13. ?>
  14. </body>
  15. </html>