Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/01/2005, 06:34
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 4 meses
Puntos: 89
mira, asi es mi logout y me funciona perfectamente

<?php
session_start();

$_SESSION = array();

session_destroy();

header("Location: index.php");
?>