You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?/*logout.phpFuse Playout System ManagementThis file removes the cookies associated with a user's session and returns them to the login page.*/header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past// Invalidate cookies using time in the pastsetcookie (Fuse_Playout_User, "", time()-3600);setcookie (Fuse_Playout_Pass, "", time()-3600);// Redirect to the logon pageheader ("Location: logon.php");echo "Successfully logged out...";?>