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

25 lines
386 B

2 months ago
<?php
/**
*
*/
2 months ago
include_once(dirname(dirname(__FILE__)) . "/library/publicBase.php");
2 months ago
class index extends publicBase {
public function home() {
$this->login();
}
2 months ago
public function login() {}
2 months ago
public function loginout() {
2 months ago
session_start();
session_destroy();
session_write_close();
header('location:/');
exit();
2 months ago
}
}