Cita:
Iniciado por walterdevel Tenés que hacer un unset($_SESSION['nombre_sesion']); a todas tus sesiones en tu logout, como ya te dijeron antes.
Código PHP:
<?php session_start();
unset($_SESSION['autentificado']); // tendría que agregarlo aquí? y mi variable de sesión en mi caso sería "auntentificado, segun entiendo o.o ?
session_destroy();
header("location: index.php");
?>