PHP Classes

File: Logout.php

Recommend this page to a friend!
  Classes of jon   PHP Login Site with Cookie MD5 Hash   Logout.php   Download  
File: Logout.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Login Site with Cookie MD5 Hash
User login system using cookies with MD5 tokens
Author: By
Last change:
Date: 2 months ago
Size: 214 bytes
 

Contents

Class file image Download
<?php

session_start
();

header("Cache-Control: max-age=2592000");

require_once
"Core/Define.php";
require_once
"Core/Init.php";
require_once
"Core/Head.php";

$User = new User();
$User->Logout();

?>