Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/08/2005, 10:06
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Pero es lo mas facil, haces esto:

<a href="cerrar_sesion.php"><img src="Imagenes/cerrarsesion.png" width="150" height="20" border="0"></a>

script cerrar_sesion.php
Código PHP:
<?php
   session_start
();
   
session_destroy();
   
//redirecion a inicio.php
   
header("Location: inicio.php");
?>