You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postfixadmin/logout.php

22 lines
285 B
PHP

<?
//
// logout.php
//
include "my_lib.php";
$sessid = check_session();
session_unset();
session_destroy();
print_header();
print "<h1>Mail Admin</h1>\n";
print "<hr>\n";
print "You are logged out\n";
print "<p>\n";
print "<a href=login.php>Login again</a>\n";
print_footer();
?>