html点击链接调用php文件

<a  onclick="window.open('php/loginOut.php','_self')">退出登录</a>

loginOut.php文件内容

<?php
session_start();
session_destroy();
header('location:index.html');
?>
清空session,跳转到首页

相关文章:

  • 2021-11-19
  • 2021-11-23
  • 2022-12-23
  • 2021-12-17
  • 2021-06-07
  • 2021-09-28
  • 2022-12-23
猜你喜欢
  • 2021-08-03
  • 2021-08-29
  • 2021-12-01
  • 2021-10-23
  • 2021-06-01
  • 2021-10-09
相关资源
相似解决方案