Ben tıklandığında php bu çalışacak bir bağlantı yapmak gerekir:
session_destroy();
Ben html bir bağlantı yapmak için biliyorum, ama ben php ile etkileşim yapmak için nasıl bilmiyorum. Herhangi bir yardım için teşekkür ederiz.
Bir Örneğin, çıkıyor bu script kullanmak istiyorum.
Sizin HTML "index.php" için (sadece bir örnek) böyle bir şey olmalı
<a href="logout.php">Log Out</a>
Sonra "logout.php" üzerine
session_start(); //to ensure you are using same session
session_destroy(); //destroy the session
header("location:index.php"); //to redirect back to "index.php" after logging out
exit();
JavaScript kullanmak istediğiniz durumda, ben size bunu da söyleyebilirsiniz?