SOFM/logout.php

14 lines
204 B
PHP
Raw Normal View History

2020-11-03 21:02:37 -08:00
<?php
session_start();
if(isset($_SESSION['hostz-user']) && isset($_SESSION['hostz-passwd']))
{
$_SESSION['hostz-user'] = null;
$_SESSION['hostz-passwd'] = null;
}
header("Location: index.php");
?>