HospitalManagementSystem / hospital-management / logout.php
logout.php
Raw
<?php
session_start();
session_destroy();
echo "<script>window.location='index.php';</script>";
?>