• File: logoff.php
  • Full Path: /home/u820075591/domains/livrariafabris.com.br/public_html/admin/logoff.php
  • Date Modified: 07/17/2023 3:20 AM
  • File size: 295 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
	session_start();

	$_SESSION["nome"] = '';
	$_SESSION["email"] = '';
	$_SESSION["nome_usuario"] = '';
	$_SESSION["senha"] = '';
	$_SESSION["id"] = '';
	$_SESSION["aut"] = 0;
	$_REQUEST[secao] = '';
	
	// Finally, destroy the session.
	session_destroy();
	header('Location: index.php');
?>