Files
php_practice/exam135/logout.php

8 lines
92 B
PHP

<?php
require 'core.inc.php';
session_destroy();
header('Location: '. $http_referer);
?>